D6743: perf: handle NameError for `pycompat.foo` when pycompat wasn't imported
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Tue Aug 20 15:36:22 UTC 2019
Closed by commit rHGfd62b027d6a4: perf: handle NameError for `pycompat.foo` when pycompat wasn't imported (authored by martinvonz).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D6743?vs=16263&id=16272
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D6743/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D6743
AFFECTED FILES
contrib/perf.py
CHANGE DETAILS
diff --git a/contrib/perf.py b/contrib/perf.py
--- a/contrib/perf.py
+++ b/contrib/perf.py
@@ -132,7 +132,7 @@
_maxint = sys.maxsize # per py3 docs for replacing maxint
else:
_maxint = sys.maxint
-except (ImportError, AttributeError):
+except (NameError, ImportError, AttributeError):
import inspect
getargspec = inspect.getargspec
_byteskwargs = identity
@@ -144,11 +144,11 @@
try:
# 4.7+
queue = pycompat.queue.Queue
-except (AttributeError, ImportError):
+except (NameError, AttributeError, ImportError):
# <4.7.
try:
queue = pycompat.queue
- except (AttributeError, ImportError):
+ except (NameError, AttributeError, ImportError):
queue = util.queue
try:
To: martinvonz, #hg-reviewers, pulkit
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list