hgext3rd/__init__.py
author Gregory Szorc <gregory.szorc@gmail.com>
Tue, 06 Feb 2018 18:13:15 -0800
changeset 36077 a3d42d1865f1
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
wireprotoserver: define and use parse_qs from urllib The cgi module is deprecated since Python 2.6. Let's replace uses of it in wireprotoserver with a similar function from urllib. Differential Revision: https://phab.mercurial-scm.org/D2094

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)