view hgext3rd/__init__.py @ 44475:b7ca03dff14c stable

gzip: use the stdlib version with python 3 (issue6284) It turned out that the stdlib gained the feature we missed in python 3.1. We can now use it directly.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 10 Mar 2020 18:54:44 +0100
parents 2372284d9457
children 6000f5b25c9b
line wrap: on
line source

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

__path__ = pkgutil.extend_path(__path__, __name__)