Skip to content

Commit 5830232

Browse files
committed
Remove whitespace
1 parent f1eac65 commit 5830232

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lib/test/test_tokenize.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1727,7 +1727,7 @@ def test_random_files(self):
17271727
print('tokenize', testfile)
17281728
with open(testfile, 'rb') as f:
17291729
# with self.subTest(file=testfile):
1730-
self.check_roundtrip(f)
1730+
self.check_roundtrip(f)
17311731

17321732

17331733
def roundtrip(self, code):

Lib/tokenize.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ def tokenize(readline):
444444
encoding = "utf-8"
445445
yield TokenInfo(ENCODING, encoding, (0, 0), (0, 0), '')
446446
yield from _tokenize(rl_gen, encoding)
447-
447+
448448
def _tokenize(rl_gen, encoding):
449449
source = b"".join(rl_gen).decode(encoding)
450450
token = None

0 commit comments

Comments
 (0)