]> granicus.if.org Git - python/commit
bpo-37772: fix zipfile.Path.iterdir() outputs (GH-15170)
authorshireenrao <shireenrao@gmail.com>
Sat, 24 Aug 2019 15:26:41 +0000 (11:26 -0400)
committerJason R. Coombs <jaraco@jaraco.com>
Sat, 24 Aug 2019 15:26:41 +0000 (11:26 -0400)
commita4e2991bdc993b60b6457c8a38d6e4a1fc845781
treeed1fa819f32ebd34c4d503bc8cc33e4adc540975
parentef61c524ddeeb56da3858b86e349e7288d68178e
bpo-37772: fix zipfile.Path.iterdir() outputs (GH-15170)

* fix Path._add_implied_dirs to include all implied directories

* fix Path._add_implied_dirs to include all implied directories

* Optimize code by using sets instead of lists

* ðŸ“œðŸ¤– Added by blurb_it.

* fix Path._add_implied_dirs to include all implied directories

* Optimize code by using sets instead of lists

* ðŸ“œðŸ¤– Added by blurb_it.

* Add tests to zipfile.Path.iterdir() fix

* Update test for zipfile.Path.iterdir()

* remove whitespace from test file

* Rewrite NEWS blurb to describe the user-facing impact and avoid implementation details.

* remove redundant [] within set comprehension

* Update to use unique_everseen to maintain order and other suggestions in review

* remove whitespace and add back add_dirs in tests

* Add new standalone function parents using posixpath to get parents of a directory

* removing whitespace (sorry)

* Remove import pathlib from zipfile.py

* Rewrite _parents as a slice on a generator of the ancestry of a path.

* Remove check for '.' and '/', now that parents no longer returns those.

* Separate calculation of implied dirs from adding those

* Re-use _implied_dirs in tests for generating zipfile with dir entries.

* Replace three fixtures (abcde, abcdef, abde) with one representative example alpharep.

* Simplify implementation of _implied_dirs by collapsing the generation of parent directories for each name.
Lib/test/test_zipfile.py
Lib/zipfile.py
Misc/NEWS.d/next/Library/2019-08-07-23-48-09.bpo-37772.hLCvdn.rst [new file with mode: 0644]