diff options
Diffstat (limited to 'numpy/core/oldnumeric.py')
-rw-r--r-- | numpy/core/oldnumeric.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/numpy/core/oldnumeric.py b/numpy/core/oldnumeric.py index 3bc1b13de..50e2b4c29 100644 --- a/numpy/core/oldnumeric.py +++ b/numpy/core/oldnumeric.py @@ -358,10 +358,7 @@ def ravel(m,order='C'): a copy. """ a = asarray(m) - try: - return a.ravel(order) - except ValueError: - return a.copy(order).ravel(None) + return a.ravel(order) def nonzero(a): """nonzero(a) returns the indices of the elements of a which are not zero, |