From: Serhiy Storchaka Date: Sun, 17 Aug 2014 12:17:56 +0000 (+0300) Subject: Issue #22201: Command-line interface of the zipfile module now correctly X-Git-Tag: v3.5.0a1~1057 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=95d5c9d5fff08e883613df42c99c6c8a9dab7733;p=python Issue #22201: Command-line interface of the zipfile module now correctly extracts ZIP files with directory entries. Patch by Ryan Wilson. --- 95d5c9d5fff08e883613df42c99c6c8a9dab7733 diff --cc Misc/NEWS index c6bf6b7dc1,15f2b82597..18137d03a7 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -935,17 -690,6 +935,20 @@@ Test Tools/Demos ----------- ++- Issue #22201: Command-line interface of the zipfile module now correctly ++ extracts ZIP files with directory entries. Patch by Ryan Wilson. ++ +- Issue #22120: For functions using an unsigned integer return converter, + Argument Clinic now generates a cast to that type for the comparison + to -1 in the generated code. (This supresses a compilation warning.) + +- Issue #18974: Tools/scripts/diff.py now uses argparse instead of optparse. + +- Issue #21906: Make Tools/scripts/md5sum.py work in Python 3. + Patch by Zachary Ware. + +- Issue #21629: Fix Argument Clinic's "--converters" feature. + - Add support for ``yield from`` to 2to3. - Add support for the PEP 465 matrix multiplication operator to 2to3.