From 77c96fa2a96148221bde7d2274e0dfb5386a166f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 26 Oct 2021 07:43:47 -0700 Subject: [PATCH] try tests on python 3.10 --- tests/test_csv_s.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_csv_s.py b/tests/test_csv_s.py index fe8f403d..5871332f 100644 --- a/tests/test_csv_s.py +++ b/tests/test_csv_s.py @@ -79,8 +79,7 @@ class MyTests(unittest.TestCase): def test_csv_unparsable(self): """ Test CSV streaming parser with '\r' newlines. This will raise ParseError due to a Python bug - that does not correctly iterate on that line ending with sys.stdin. Simulating this failure since - standard str.splitlines() does work correctly. + that does not correctly iterate on that line ending with sys.stdin. """ data = r'unparsable\rdata' g = jc.parsers.csv_s.parse(data.splitlines(), quiet=True)