commit | 6dd9b64770af8905bef293c81d541eaaf8d8df52 | [log] [tgz] |
---|---|---|
author | Brandt Bucher <brandtbucher@gmail.com> | Mon Nov 25 22:16:53 2019 -0800 |
committer | Inada Naoki <songofacandy@gmail.com> | Tue Nov 26 15:16:53 2019 +0900 |
tree | 735a69a00b2e5b4574916a25c2b36a5611c572a9 | |
parent | e4db1f05e9a5828f6b287f99067362fa0e5732e8 [diff] |
bpo-38328: Speed up the creation time of constant list and set display. (GH-17114)
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 9961dee..947c935 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py
@@ -1222,7 +1222,7 @@ # list samples = [[], [1,2,3], ['1', '2', '3']] for sample in samples: - check(sample, vsize('Pn') + len(sample)*self.P) + check(list(sample), vsize('Pn') + len(sample)*self.P) # sortwrapper (list) # XXX # cmpwrapper (list)