hgext/__init__.py
author Augie Fackler <augie@google.com>
Sun, 25 Feb 2018 23:34:58 -0500
changeset 36455 24c2c760c1cb
parent 28450 155e3308289c
child 43076 2372284d9457
permissions -rw-r--r--
statichttprepo: move HTTPRangeHandler from byterange and delete the latter It turns out we've been toting around 472 lines of Python just for this 20-ish line class that teaches urllib how to handle '206 Partial Content'. byterange.py showed up in my \sstr\( Python 3 dragnet, and found itself having overstayed its welcome in our codebase. # no-check-commit because we're moving code that has to have foo_bar naming. Differential Revision: https://phab.mercurial-scm.org/D2443

from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)