##// END OF EJS Templates
remotefilelog: replace a "a=[expr]; b=a[0]" by "b=expr; a = [b]"...
remotefilelog: replace a "a=[expr]; b=a[0]" by "b=expr; a = [b]" Simpler is better. Differential Revision: https://phab.mercurial-scm.org/D5384

File last commit:

r28450:155e3308 default
r40884:fe0b65ff default
Show More
__init__.py
3 lines | 105 B | text/x-python | PythonLexer
Pierre-Yves David
hgext: officially turn 'hgext' into a namespace package...
r28450 from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)