summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_io.py
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@googlemail.com>2012-07-11 18:49:32 +0200
committerRalf Gommers <ralf.gommers@googlemail.com>2012-07-11 18:49:32 +0200
commit3556a2bc6605ac7267f420b3fb8d406b74616b47 (patch)
tree116a4204a51868399c85f554bfae03fc660854ea /numpy/lib/tests/test_io.py
parent1a70875974aecec81de1866ad9847d511d420f65 (diff)
downloadnumpy-3556a2bc6605ac7267f420b3fb8d406b74616b47.tar.gz
BUG: genfromtxt: make comments=None work with spaces in strings.
Diffstat (limited to 'numpy/lib/tests/test_io.py')
-rw-r--r--numpy/lib/tests/test_io.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/lib/tests/test_io.py b/numpy/lib/tests/test_io.py
index aeda7663c..0762c82e1 100644
--- a/numpy/lib/tests/test_io.py
+++ b/numpy/lib/tests/test_io.py
@@ -1454,6 +1454,9 @@ M 33 21.99
test = np.genfromtxt(StringIO("test1,testNonetherestofthedata"),
dtype=None, comments=None, delimiter=',')
assert_equal(test[1], asbytes('testNonetherestofthedata'))
+ test = np.genfromtxt(StringIO("test1, testNonetherestofthedata"),
+ dtype=None, comments=None, delimiter=',')
+ assert_equal(test[1], asbytes(' testNonetherestofthedata'))
def test_recfromtxt(self):
#