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):
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 7
7
import unittest
8
8
import zipfile
9
9
10
+ from test .support .os_helper import temp_dir , FakePath
11
+
10
12
from ._functools import compose
11
13
from ._itertools import Counter
12
14
13
15
from ._test_params import parameterize , Invoked
14
16
15
- from test .support .os_helper import temp_dir , FakePath
16
-
17
17
18
18
class jaraco :
19
19
class itertools :
You can’t perform that action at this time.
0 commit comments