summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorcookedm <cookedm@localhost>2006-03-10 21:31:27 +0000
committercookedm <cookedm@localhost>2006-03-10 21:31:27 +0000
commitbf57380caa818b73a4c41409de6ff260425f9bb6 (patch)
treeb2c42e0fde172de5def0c91811845808c00e296e /numpy/core/numeric.py
parentf2db317c1fad63f1c85944ba8443b465e32774dc (diff)
downloadnumpy-bf57380caa818b73a4c41409de6ff260425f9bb6.tar.gz
Run reindent.py (script distributed with Python) over the source to remove extraneous whitespace
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py
index 4ba599081..58d943066 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -337,7 +337,7 @@ def load(file):
def ones(shape, dtype=int_, fortran=False):
"""ones(shape, dtype=int_) returns an array of the given
- dimensions which is initialized to all ones.
+ dimensions which is initialized to all ones.
"""
a = empty(shape, dtype, fortran)
a.fill(1)
@@ -381,7 +381,7 @@ def _setpyvals(lst, frame, where=0):
elif where == 1 or wh == 'g':
frame.f_globals[UFUNC_PYVALS_NAME] = lst
elif where == 2 or wh == 'b':
- frame.f_builtins[UFUNC_PYVALS_NAME] = lst
+ frame.f_builtins[UFUNC_PYVALS_NAME] = lst
umath.update_use_defaults()
return