Mercurial > evolve
annotate hgext/__init__.py @ 1778:924b76a51d18
wireproto: chunking and compression is forthwith to be handled by hgweb
Various functions disappeared in the process. Use the new streamres API but fall back to the old way if the keyword arguments are not accepted.
See https://www.mercurial-scm.org/repo/hg/rev/2add671bf55b
author | Martijn Pieters <mjpieters@fb.com> |
---|---|
date | Wed, 30 Nov 2016 11:17:55 +0000 |
parents | 5ef77a1d975c |
children |
rev | line source |
---|---|
1619
5ef77a1d975c
hgext: turn 'hgext' into a namespace package
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
519
diff
changeset
|
1 from __future__ import absolute_import |
5ef77a1d975c
hgext: turn 'hgext' into a namespace package
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
519
diff
changeset
|
2 import pkgutil |
5ef77a1d975c
hgext: turn 'hgext' into a namespace package
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
519
diff
changeset
|
3 __path__ = pkgutil.extend_path(__path__, __name__) |
5ef77a1d975c
hgext: turn 'hgext' into a namespace package
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
519
diff
changeset
|
4 |