diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-04-27 18:44:27 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-04-27 18:44:27 +0000 |
commit | c7737e63883e9ca4392f372d5a55978ed99dc23e (patch) | |
tree | 42ee7a7c948475b5a57b2caf5403ff6720c132dd /numpy/lib/function_base.py | |
parent | 91548d0acc47252111725f4fc467f21a64659394 (diff) | |
download | numpy-c7737e63883e9ca4392f372d5a55978ed99dc23e.tar.gz |
Fix indentation error.
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index c10ee996b..bb48ae828 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -545,7 +545,7 @@ def _get_nargs(obj): ndefaults = 0 if isinstance(obj, types.MethodType): nargs -= 1 - return nargs, ndefaults + return nargs, ndefaults terr = re.compile(r'.*? takes exactly (?P<exargs>\d+) argument(s|) \((?P<gargs>\d+) given\)') try: obj() |