Kaydet (Commit) 1babdfc4 authored tarafından Tim Peters's avatar Tim Peters

Reduced memory burden by iterating over the normalization test input

file directly (instead of sucking it all into a list of lines first).
üst 1b445d3f
......@@ -506,7 +506,7 @@ def printlist(x, width=70, indent=4):
# test_normalization
# Whether a skip is expected here depends on whether a large test
# input file has been downloaded. test_normalization.skip_expected
# controls that
# controls that.
_expectations = {
'win32':
......
......@@ -33,10 +33,8 @@ def test_main():
raise TestSkipped(TESTDATAFILE + " not found, download from " +
"http://www.unicode.org/Public/UNIDATA/" + TESTDATAFILE)
data = open(TESTDATAFILE).readlines()
part1_data = {}
for line in data:
for line in open(TESTDATAFILE):
if '#' in line:
line = line.split('#')[0]
line = line.strip()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment