[issue4833] Explicit directories for zipfiles

2022-04-05 Thread Ethan Furman
Ethan Furman added the comment: New changeset 050a8f94c678a05d506fe192c863c4a572178c42 by Sam Ezeh in branch 'main': bpo-4833: Add ZipFile.mkdir (GH-32160) https://github.com/python/cpython/commit/050a8f94c678a05d506fe192c863c4a572178c42 -- ___ P

[issue4833] Explicit directories for zipfiles

2022-04-02 Thread Ethan Furman
Change by Ethan Furman : -- nosy: +alanmcintyre, twouters ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue4833] Explicit directories for zipfiles

2022-03-28 Thread Ethan Furman
Change by Ethan Furman : -- nosy: +ethan.furman versions: +Python 3.11 -Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailin

[issue4833] Explicit directories for zipfiles

2022-03-28 Thread Sam Ezeh
Sam Ezeh added the comment: I've submitted the above patch. I created the ZipFile.mkdir function, created the necessary tests and wrote the documentation. I think it is ready for review. -- Added file: https://bugs.python.org/file50705/sam_ezeh.patch

[issue4833] Explicit directories for zipfiles

2022-03-28 Thread Sam Ezeh
Change by Sam Ezeh : -- keywords: +patch pull_requests: +30238 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/32160 ___ Python tracker _

[issue4833] Explicit directories for zipfiles

2022-03-27 Thread Sam Ezeh
Sam Ezeh added the comment: I'm looking into adding ZipFile.mkdir -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue4833] Explicit directories for zipfiles

2022-03-27 Thread Sam Ezeh
Change by Sam Ezeh : -- nosy: +sam_ezeh ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue4833] Explicit directories for zipfiles

2012-12-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Actually now creating directories in zipfile is possible with ZipFile.writestr(special_zip_info, b''). However a special method (like ZipFile.mkdir(name)) can be useful. -- nosy: +serhiy.storchaka stage: -> needs patch versions: +Python 3.4 ___

[issue4833] Explicit directories for zipfiles

2011-05-30 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue4833] Explicit directories for zipfiles

2011-02-01 Thread Thijs Triemstra
Changes by Thijs Triemstra : -- nosy: +thijs ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue4833] Explicit directories for zipfiles

2009-09-23 Thread Ralf Schmitt
Ralf Schmitt added the comment: it looks like this is fixed in 2.6.2. I'm attaching a zipfile which cannot be extracted in 2.6.1 Running python -c 'import zipfile; zipfile.ZipFile("test.zip").extractall()' in 2.6.2 however works. but you should not do that anyway because of issue 6972 --

[issue4833] Explicit directories for zipfiles

2009-01-04 Thread Robert Schuppenies
New submission from Robert Schuppenies : We have an issue with the Python cheeseshop which is probably an issue with Python itself as well. When we create a zip file with standard linux tools ('zip os-zipped.zip *'), uploading it works fine. But if we use the zipfile module from Python and try t