mirror of
https://github.com/python/cpython.git
synced 2024-11-27 03:45:08 +08:00
Make test_tokenize really pass -- don't add extra output.
This commit is contained in:
parent
cfbbf48e3e
commit
f066c1ba37
@ -98,7 +98,7 @@ _PRINT_WORKING_MSG_INTERVAL = 5 * 60
|
|||||||
# and tokenized again from the latter. The test fails if the second
|
# and tokenized again from the latter. The test fails if the second
|
||||||
# tokenization doesn't match the first.
|
# tokenization doesn't match the first.
|
||||||
def test_roundtrip(f):
|
def test_roundtrip(f):
|
||||||
## print 'Testing:', f
|
## print('Testing:', f)
|
||||||
# Get the encoding first
|
# Get the encoding first
|
||||||
fobj = open(f, encoding="latin-1")
|
fobj = open(f, encoding="latin-1")
|
||||||
first2lines = fobj.readline() + fobj.readline()
|
first2lines = fobj.readline() + fobj.readline()
|
||||||
@ -106,7 +106,7 @@ def test_roundtrip(f):
|
|||||||
m = re.search(r"coding:\s*(\S+)", first2lines)
|
m = re.search(r"coding:\s*(\S+)", first2lines)
|
||||||
if m:
|
if m:
|
||||||
encoding = m.group(1)
|
encoding = m.group(1)
|
||||||
print(" coding:", encoding)
|
## print(" coding:", encoding)
|
||||||
else:
|
else:
|
||||||
encoding = "utf-8"
|
encoding = "utf-8"
|
||||||
fobj = open(f, encoding=encoding)
|
fobj = open(f, encoding=encoding)
|
||||||
|
Loading…
Reference in New Issue
Block a user