diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-08-19 09:32:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-19 09:32:51 -0500 |
commit | ee82dc78aba83013d3e3581514d031094325e184 (patch) | |
tree | acb3ff6c98914174e2f6e7ebd0fd4015efeb0a66 /numpy/lib/tests/test_io.py | |
parent | e8d177f74adbe5c7630721a4ab3f20f58839ac99 (diff) | |
parent | da0727912ef179f5491412f737292f12844a8a6f (diff) | |
download | numpy-ee82dc78aba83013d3e3581514d031094325e184.tar.gz |
Merge pull request #11784 from mattip/pep8-test-methods
MAINT: reformat line spacing before test methods
Diffstat (limited to 'numpy/lib/tests/test_io.py')
-rw-r--r-- | numpy/lib/tests/test_io.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/lib/tests/test_io.py b/numpy/lib/tests/test_io.py index f58c9e33d..1f3664d92 100644 --- a/numpy/lib/tests/test_io.py +++ b/numpy/lib/tests/test_io.py @@ -348,7 +348,6 @@ class TestSaveTxt(object): assert_raises(ValueError, np.savetxt, c, np.array(1)) assert_raises(ValueError, np.savetxt, c, np.array([[[1], [2]]])) - def test_record(self): a = np.array([(1, 2), (3, 4)], dtype=[('x', 'i4'), ('y', 'i4')]) c = BytesIO() @@ -2025,7 +2024,6 @@ M 33 21.99 assert_equal(test['f0'], 0) assert_equal(test['f1'], "testNonethe" + utf8.decode("UTF-8")) - def test_utf8_file_nodtype_unicode(self): # bytes encoding with non-latin1 -> unicode upcast utf8 = u'\u03d6' |