cubicweb/utils.py
branch3.26
changeset 12319 3ee1db91fb00
parent 12046 9056a41d91ba
child 12327 58f05ffafeca
child 12874 cc71a801b846
--- a/cubicweb/utils.py	Thu Oct 12 15:22:00 2017 +0200
+++ b/cubicweb/utils.py	Thu May 03 14:05:26 2018 +0200
@@ -26,8 +26,13 @@
 import re
 import json
 
+from six import PY3
+
 from operator import itemgetter
-from inspect import getargspec
+if PY3:
+    from inspect import getfullargspec as getargspec
+else:
+    from inspect import getargspec
 from itertools import repeat
 from uuid import uuid4
 from warnings import warn