mercurial/extensions.py
changeset 33722 62fbe95075d3
parent 33699 50c44dee741a
child 33836 38a3767975a7
--- a/mercurial/extensions.py	Thu Jun 15 14:22:25 2017 -0400
+++ b/mercurial/extensions.py	Tue Jul 25 22:48:46 2017 -0400
@@ -186,7 +186,11 @@
             try:
                 extsetup(ui)
             except TypeError:
-                if inspect.getargspec(extsetup).args:
+                # Try to use getfullargspec (Python 3) first, and fall
+                # back to getargspec only if it doesn't exist so as to
+                # avoid warnings.
+                if getattr(inspect, 'getfullargspec',
+                           getattr(inspect, 'getargspec'))(extsetup).args:
                     raise
                 extsetup() # old extsetup with no ui argument
         except Exception as inst: