Skip to content
Prev Previous commit
Next Next commit
fixup! fixup! Handle \r\n in continuation lines
  • Loading branch information
pablogsal committed May 28, 2023
commit 559487c15052c3fba40d50a546c184734a5ddee6
6 changes: 3 additions & 3 deletions Lib/test/test_tokenize.py
Original file line number Diff line number Diff line change
Expand Up @@ -1804,9 +1804,9 @@ def test_random_files(self):
if support.verbose >= 2:
print('tokenize', testfile)
with open(testfile, 'rb') as f:
# with self.subTest(file=testfile):
self.check_roundtrip(f)
self.check_line_extraction(f)
with self.subTest(file=testfile):
self.check_roundtrip(f)
self.check_line_extraction(f)


def roundtrip(self, code):
Expand Down