8000 fixup! fixup! Handle \r\n in continuation lines · python/cpython@559487c · GitHub
[go: up one dir, main page]

Skip to content

Commit 559487c

Browse files
committed
fixup! fixup! Handle \r\n in continuation lines
1 parent 969060f commit 559487c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Lib/test/test_tokenize.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1804,9 +1804,9 @@ def test_random_files(self):
18041804
if support.verbose >= 2:
18051805
print('tokenize', testfile)
18061806
with open(testfile, 'rb') as f:
1807-
# with self.subTest(file=testfile):
1808-
self.check_roundtrip(f)
1809-
self.check_line_extraction(f)
1807+
with self.subTest(file=testfile):
1808+
self.check_roundtrip(f)
1809+
self.check_line_extraction(f)
18101810

18111811

18121812
def roundtrip(self, code):

0 commit comments

Comments
 (0)
0