Skip to content

Commit 5482a93

Browse files
authored
Re-order imports to align with zipp 3.18.2 (#119587)
1 parent 5d04cc5 commit 5482a93

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Lib/test/test_zipfile/_path/test_complexity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
],

Lib/test/test_zipfile/_path/test_path.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
import zipfile
99
import zipfile._path
1010

11+
from test.support.os_helper import temp_dir, FakePath
12+
1113
from ._functools import compose
1214
from ._itertools import Counter
1315

1416
from ._test_params import parameterize, Invoked
1517

16-
from test.support.os_helper import temp_dir, FakePath
17-
1818

1919
class jaraco:
2020
class itertools:

0 commit comments

Comments
 (0)