File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Lib/test/test_zipfile/_path Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class TestComplexity(unittest.TestCase):
2020 @pytest .mark .flaky
2121 def test_implied_dirs_performance (self ):
2222 best , others = big_o .big_o (
23- compose (consume , zipfile .CompleteDirs ._implied_dirs ),
23+ compose (consume , zipfile ._path . CompleteDirs ._implied_dirs ),
2424 lambda size : [
2525 '/' .join (string .ascii_lowercase + str (n )) for n in range (size )
2626 ],
Original file line number Diff line number Diff line change 88import zipfile
99import zipfile ._path
1010
11+ from test .support .os_helper import temp_dir , FakePath
12+
1113from ._functools import compose
1214from ._itertools import Counter
1315
1416from ._test_params import parameterize , Invoked
1517
16- from test .support .os_helper import temp_dir , FakePath
17-
1818
1919class jaraco :
2020 class itertools :
You can’t perform that action at this time.
0 commit comments