diff options
Diffstat (limited to 'numpy/lib/ufunclike.py')
-rw-r--r-- | numpy/lib/ufunclike.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/lib/ufunclike.py b/numpy/lib/ufunclike.py index b51365f41..8b85ef770 100644 --- a/numpy/lib/ufunclike.py +++ b/numpy/lib/ufunclike.py @@ -1,7 +1,10 @@ """ Module of functions that are like ufuncs in acting on arrays and optionally storing results in an output array. + """ +from __future__ import division + __all__ = ['fix', 'isneginf', 'isposinf'] import numpy.core.numeric as nx |