# HG changeset patch # User Yuya Nishihara # Date 1493217052 -32400 # Node ID 85dc5a25f1fc3c59bc29facfde94adca20a98846 # Parent d74b0cff94a9befcf531a7a4ffdc159d5c48b833 debuginstall: check C extensions only if they are loadable per policy This check is useless in pure installation and I want to make it directly import C extension modules. diff -r d74b0cff94a9 -r 85dc5a25f1fc mercurial/debugcommands.py --- a/mercurial/debugcommands.py Wed Apr 26 22:26:28 2017 +0900 +++ b/mercurial/debugcommands.py Wed Apr 26 23:30:52 2017 +0900 @@ -1020,19 +1020,20 @@ fm.write('hgmodules', _("checking installed modules (%s)...\n"), os.path.dirname(pycompat.fsencode(__file__))) - err = None - try: - from . import ( - base85, - bdiff, - mpatch, - osutil, - ) - dir(bdiff), dir(mpatch), dir(base85), dir(osutil) # quiet pyflakes - except Exception as inst: - err = inst - problems += 1 - fm.condwrite(err, 'extensionserror', " %s\n", err) + if policy.policy in ('c', 'allow'): + err = None + try: + from . import ( + base85, + bdiff, + mpatch, + osutil, + ) + dir(bdiff), dir(mpatch), dir(base85), dir(osutil) # quiet pyflakes + except Exception as inst: + err = inst + problems += 1 + fm.condwrite(err, 'extensionserror', " %s\n", err) compengines = util.compengines._engines.values() fm.write('compengines', _('checking registered compression engines (%s)\n'), diff -r d74b0cff94a9 -r 85dc5a25f1fc tests/test-install.t --- a/tests/test-install.t Wed Apr 26 22:26:28 2017 +0900 +++ b/tests/test-install.t Wed Apr 26 23:30:52 2017 +0900 @@ -34,7 +34,7 @@ "editornotfound": false, "encoding": "ascii", "encodingerror": null, - "extensionserror": null, + "extensionserror": null, (no-pure !) "hgmodulepolicy": "*", (glob) "hgmodules": "*mercurial", (glob) "hgver": "*", (glob)