diff options
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 6b4a93ce0..1dde02400 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -1936,7 +1936,7 @@ def array_str(a, max_line_width=None, precision=None, suppress_small=None): '[0 1 2]' """ - return array2string(a, max_line_width, precision, suppress_small, ' ', "", str) + return array2string(a, max_line_width, precision, suppress_small, ' ', "") def set_string_function(f, repr=True): |