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 77import unittest
88import zipfile
99
10+ from test .support .os_helper import temp_dir , FakePath
11+
1012from ._functools import compose
1113from ._itertools import Counter
1214
1315from ._test_params import parameterize , Invoked
1416
15- from test .support .os_helper import temp_dir , FakePath
16-
1717
1818class jaraco :
1919 class itertools :
You can’t perform that action at this time.
0 commit comments