hgext3rd/__init__.py
author Denis Laxalde <denis@laxalde.org>
Tue, 12 Nov 2019 22:52:30 +0100
changeset 43626 bdb0ddab7bb3
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
mail: let all charset values be native strings Charset values will typically be used to build email.header.Header instances, which takes str (though it tolerates bytes) or passed to decode()/encode() methods of string values (which want str). It seems that using native str involves less conversions than before and this also helps type hinting (as illustrates removal of pytype disabling instructions).

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)