diff options
author | mdroe <mdroe@localhost> | 2009-10-14 15:12:24 +0000 |
---|---|---|
committer | mdroe <mdroe@localhost> | 2009-10-14 15:12:24 +0000 |
commit | 374721f4dcebd1d01677dc33d9185c7ec60b7ecb (patch) | |
tree | 8ca47144347a1e71b330d3cf9c75aa8f9721840d /numpy/core/defchararray.py | |
parent | fbbf05cfefe98fd284c08c2f3a78c7cf5503821a (diff) | |
download | numpy-374721f4dcebd1d01677dc33d9185c7ec60b7ecb.tar.gz |
Fix oops in last commit. Committed some experimental things I shouldn't have. Sorry.
Diffstat (limited to 'numpy/core/defchararray.py')
-rw-r--r-- | numpy/core/defchararray.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/core/defchararray.py b/numpy/core/defchararray.py index 4ad5c59d3..605b478e2 100644 --- a/numpy/core/defchararray.py +++ b/numpy/core/defchararray.py @@ -1714,7 +1714,6 @@ class chararray(ndarray): self = ndarray.__new__(subtype, shape, (dtype, itemsize), order=order) else: - print shape, dtype, itemsize self = ndarray.__new__(subtype, shape, (dtype, itemsize), buffer=buffer, offset=offset, strides=strides, |