hgext/__init__.py
author Denis Laxalde <denis@laxalde.org>
Thu, 10 Oct 2019 21:30:44 +0200
changeset 43171 54b06bec8914
parent 43076 2372284d9457
child 48966 6000f5b25c9b
permissions -rw-r--r--
py3: use socket.makefile() instead of dropped smtplib.SSLFakeFile The latter (undocumented internal) class got removed in Python 3.3. Use socket.makefile() as suggested: https://docs.python.org/3/whatsnew/3.3.html#porting-python-code

from __future__ import absolute_import
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)