# HG changeset patch # User FUJIWARA Katsunori # Date 1498239561 -32400 # Node ID ef46d432e2e4cfecafb1faa4765254bf0650d4ef # Parent 45b0e9d05ee90f0d72239587692975d357a13957 dispatch: remove unused _loaded Now, there is no user for dispatch._loaded. diff -r 45b0e9d05ee9 -r ef46d432e2e4 mercurial/dispatch.py --- a/mercurial/dispatch.py Sat Jun 24 02:39:20 2017 +0900 +++ b/mercurial/dispatch.py Sat Jun 24 02:39:21 2017 +0900 @@ -720,8 +720,6 @@ return lambda: runcommand(lui, None, cmd, args[:1], ui, options, d, [], {}) -_loaded = set() - def _dispatch(req): args = req.args ui = req.ui @@ -746,8 +744,7 @@ profile = lui.configbool('profiling', 'enabled') with profiling.profile(lui, enabled=profile) as profiler: # Configure extensions in phases: uisetup, extsetup, cmdtable, and - # reposetup. Programs like TortoiseHg will call _dispatch several - # times so we keep track of configured extensions in _loaded. + # reposetup extensions.loadall(lui) # Propagate any changes to lui.__class__ by extensions ui.__class__ = lui.__class__