[issue17189] Add zip64 support to shutil

2015-02-05 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: -Use allowZip64=True by default resolution: -> out of date superseder: -> Use allowZip64=True by default ___ Python tracker ___

[issue17189] Add zip64 support to shutil

2015-02-05 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list ma

[issue17189] Add zip64 support to shutil

2013-02-13 Thread William Mallard
William Mallard added the comment: Documentation added. See attached. -- Added file: http://bugs.python.org/file29063/shutil_zip64_by_default.patch ___ Python tracker ___ ___

[issue17189] Add zip64 support to shutil

2013-02-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This should be reflected in the documentation. -- dependencies: +Use allowZip64=True by default ___ Python tracker ___ ___

[issue17189] Add zip64 support to shutil

2013-02-13 Thread William Mallard
William Mallard added the comment: Ok, here's a patch that makes zip64 the default in make_archive() when format='zip'. I also agree that ZipFile should set allowZip64=True by default. (PKZIP has supported zip64 since 2001!) -- Added file: http://bugs.python.org/file29060/shutil_zip64

[issue17189] Add zip64 support to shutil

2013-02-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Agree. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue17189] Add zip64 support to shutil

2013-02-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Yes, there is a special flag for this in zipfile. It is named > allowZip64. Then I think shutil should set allowZip64 to True by default. People who want fine-grained control over the zipfile's characteristics can still use the zipfile module directly. -

[issue17189] Add zip64 support to shutil

2013-02-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > Would there be a way to automatically switch the flag as necessary? > (i.e. when writing more than 2GB, I guess) Yes, there is a special flag for this in zipfile. It is named allowZip64. The only reason to use allowZip64=False is when you expect to unzip a

[issue17189] Add zip64 support to shutil

2013-02-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: Would there be a way to automatically switch the flag as necessary? (i.e. when writing more than 2GB, I guess) -- nosy: +hynek, pitrou, tarek ___ Python tracker ___

[issue17189] Add zip64 support to shutil

2013-02-12 Thread R. David Murray
Changes by R. David Murray : -- stage: -> patch review versions: +Python 3.4 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list

[issue17189] Add zip64 support to shutil

2013-02-11 Thread William Mallard
New submission from William Mallard: This patch enables creation of 64-bit zip files via make_archive(). make_archive uses ZipFile to create zip files. ZipFile already supports creation of 64-bit archives via a kwarg, but make_archive hard-codes it to 32-bit. This patch exposes the option in a