We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 83e8912 + e1d0165 commit aa021c3Copy full SHA for aa021c3
nitime/analysis/base.py
@@ -1,5 +1,8 @@
1
2
-from inspect import getfullargspec
+try:
3
+ from inspect import getfullargspec
4
+except ImportError: # PY2
5
+ from inspect import getargspec as getfullargspec
6
7
from nitime import descriptors as desc
8
0 commit comments