diff options
author | njsmith <njs@pobox.com> | 2013-04-07 03:39:34 -0700 |
---|---|---|
committer | njsmith <njs@pobox.com> | 2013-04-07 03:39:34 -0700 |
commit | ef76d4928ea1591d382fceaa416678907ea76098 (patch) | |
tree | 498f3e5c9a4efe4149cf2913ab18d2eb81c1d59d /numpy/f2py | |
parent | 3c70e20a5f1aed4098ba66d21e6a1f60edc6fddd (diff) | |
parent | 77e09f14bdf9eeebbd20ca861cb51da3e570bb72 (diff) | |
download | numpy-ef76d4928ea1591d382fceaa416678907ea76098.tar.gz |
Merge pull request #3202 from charris/2to3-reduce-fixups
MAINT: Cleanup some imports involving reduce.
Diffstat (limited to 'numpy/f2py')
-rw-r--r-- | numpy/f2py/auxfuncs.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/f2py/auxfuncs.py b/numpy/f2py/auxfuncs.py index 608ae5566..636b63c1e 100644 --- a/numpy/f2py/auxfuncs.py +++ b/numpy/f2py/auxfuncs.py @@ -24,6 +24,7 @@ f2py_version = __version__.version import pprint import sys import types +from functools import reduce from . import cfuncs @@ -35,8 +36,6 @@ options={} debugoptions=[] wrapfuncs = 1 -if sys.version_info[0] >= 3: - from functools import reduce def outmess(t): if options.get('verbose',1): |