[PATCH 5 of 5] extensions: remove strip_init=True from _disabledpaths()

Yuya Nishihara yuya at tcha.org
Fri May 11 09:29:32 EDT 2018


# HG changeset patch
# User Yuya Nishihara <yuya at tcha.org>
# Date 1525340398 -32400
#      Thu May 03 18:39:58 2018 +0900
# Node ID 4810c6c8635cbc20137b14ddd440d8f514376b7b
# Parent  a7e3d6f705355cc993619faee28b3dac09bf1ab4
extensions: remove strip_init=True from _disabledpaths()

It's no longer used.

diff --git a/mercurial/extensions.py b/mercurial/extensions.py
--- a/mercurial/extensions.py
+++ b/mercurial/extensions.py
@@ -540,9 +540,8 @@ def getwrapperchain(container, funcname)
         fn = getattr(fn, '_origfunc', None)
     return result
 
-def _disabledpaths(strip_init=False):
-    '''find paths of disabled extensions. returns a dict of {name: path}
-    removes /__init__.py from packages if strip_init is True'''
+def _disabledpaths():
+    '''find paths of disabled extensions. returns a dict of {name: path}'''
     import hgext
     extpath = os.path.dirname(
         os.path.abspath(pycompat.fsencode(hgext.__file__)))
@@ -561,8 +560,6 @@ def _disabledpaths(strip_init=False):
             path = os.path.join(extpath, e, '__init__.py')
             if not os.path.exists(path):
                 continue
-            if strip_init:
-                path = os.path.dirname(path)
         if name in exts or name in _order or name == '__init__':
             continue
         exts[name] = path


More information about the Mercurial-devel mailing list