File tree 2 files changed +3
-3
lines changed
Lib/test/test_zipfile/_path
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):
20
20
@pytest .mark .flaky
21
21
def test_implied_dirs_performance (self ):
22
22
best , others = big_o .big_o (
23
- compose (consume , zipfile .CompleteDirs ._implied_dirs ),
23
+ compose (consume , zipfile ._path . CompleteDirs ._implied_dirs ),
24
24
lambda size : [
25
25
'/' .join (string .ascii_lowercase + str (n )) for n in range (size )
26
26
],
Original file line number Diff line number Diff line change 8
8
import zipfile
9
9
import zipfile ._path
10
10
11
+ from test .support .os_helper import temp_dir , FakePath
12
+
11
13
from ._functools import compose
12
14
from ._itertools import Counter
13
15
14
16
from ._test_params import parameterize , Invoked
15
17
16
- from test .support .os_helper import temp_dir , FakePath
17
-
18
18
19
19
class jaraco :
20
20
class itertools :
You can’t perform that action at this time.
0 commit comments