diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-03-06 23:15:35 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-03-06 23:15:35 +0000 |
commit | 819578a1b2d5f9adf9ab6719e8b9b425c5ca7e00 (patch) | |
tree | e0dfce89c9c9fa810169d00979939a6218ceb842 /numpy/core/numeric.py | |
parent | 2ce56bc1c3faa7d2e9e4ba5e64e2a8bdd5bb5313 (diff) | |
download | numpy-819578a1b2d5f9adf9ab6719e8b9b425c5ca7e00.tar.gz |
Apply Tim's code-checker tests except for white-space-only changes.
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 4416a07fc..4ba599081 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -45,7 +45,7 @@ newaxis = None ndarray = multiarray.ndarray flatiter = multiarray.flatiter broadcast = multiarray.broadcast -dtype=multiarray.dtype +dtype = multiarray.dtype ufunc = type(sin) arange = multiarray.arange @@ -175,7 +175,7 @@ def cross(a, b, axisa=-1, axisb=-1, axisc=-1, axis=None): returned. """ if axis is not None: - axisa,axisb,axisc=(axis,)*3 + axisa,axisb,axisc=(axis,)*3 a = _move_axis_to_0(asarray(a), axisa) b = _move_axis_to_0(asarray(b), axisb) msg = "incompatible dimensions for cross product\n"\ |