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.
1 parent 83e8912 commit e1d0165Copy full SHA for e1d0165
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