Skip to content

Commit

Permalink
Re-order imports to align with zipp 3.18.2 (python#119587)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco authored May 27, 2024
1 parent 5d04cc5 commit 5482a93
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Lib/test/test_zipfile/_path/test_complexity.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class TestComplexity(unittest.TestCase):
@pytest.mark.flaky
def test_implied_dirs_performance(self):
best, others = big_o.big_o(
compose(consume, zipfile.CompleteDirs._implied_dirs),
compose(consume, zipfile._path.CompleteDirs._implied_dirs),
lambda size: [
'/'.join(string.ascii_lowercase + str(n)) for n in range(size)
],
Expand Down
4 changes: 2 additions & 2 deletions Lib/test/test_zipfile/_path/test_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
import zipfile
import zipfile._path

from test.support.os_helper import temp_dir, FakePath

from ._functools import compose
from ._itertools import Counter

from ._test_params import parameterize, Invoked

from test.support.os_helper import temp_dir, FakePath


class jaraco:
class itertools:
Expand Down

0 comments on commit 5482a93

Please sign in to comment.