[issue21717] Exclusive mode for ZipFile and TarFile

2015-03-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___

[issue21717] Exclusive mode for ZipFile and TarFile

2015-03-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset b2a8c30d8ddb by Serhiy Storchaka in branch 'default': Issue #21717: The zipfile.ZipFile.open function now supports 'x' (exclusive https://hg.python.org/cpython/rev/b2a8c30d8ddb -- ___ Python tracker

[issue21717] Exclusive mode for ZipFile and TarFile

2015-03-25 Thread Berker Peksag
Berker Peksag added the comment: LGTM. I left two minor comments on Rietveld. Sorry for the delay. -- stage: patch review -> commit review ___ Python tracker ___

[issue21717] Exclusive mode for ZipFile and TarFile

2015-03-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could you look on zipfile patch Berker? It is simpler than tarfile patch. -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___

[issue21717] Exclusive mode for ZipFile and TarFile

2015-02-13 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the review, Serhiy. I'll take a look at the zipfile patch tomorrow. -- ___ Python tracker ___

[issue21717] Exclusive mode for ZipFile and TarFile

2015-02-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset ed9e9e6b3c1e by Berker Peksag in branch 'default': Issue #21717: tarfile.open() now supports 'x' (exclusive creation) mode. https://hg.python.org/cpython/rev/ed9e9e6b3c1e -- nosy: +python-dev ___ Python t

[issue21717] Exclusive mode for ZipFile and TarFile

2015-02-12 Thread Berker Peksag
Changes by Berker Peksag : Added file: http://bugs.python.org/file38115/issue21717_tarfile_v5.diff ___ Python tracker ___ ___ Python-bugs-list

[issue21717] Exclusive mode for ZipFile and TarFile

2015-02-11 Thread Berker Peksag
Changes by Berker Peksag : Added file: http://bugs.python.org/file38095/issue21717_tarfile_v4.diff ___ Python tracker ___ ___ Python-bugs-list

[issue21717] Exclusive mode for ZipFile and TarFile

2015-02-10 Thread Berker Peksag
Berker Peksag added the comment: Updated patch. Thanks again, Serhiy. -- Added file: http://bugs.python.org/file38081/issue21717_tarfile_v3.diff ___ Python tracker ___ __

[issue21717] Exclusive mode for ZipFile and TarFile

2015-02-06 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch for zipfile. -- Added file: http://bugs.python.org/file38027/zipfile_mode_x.patch ___ Python tracker ___ _

[issue21717] Exclusive mode for ZipFile and TarFile

2015-02-06 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Added more comments. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue21717] Exclusive mode for ZipFile and TarFile

2015-02-06 Thread Berker Peksag
Berker Peksag added the comment: Here's an updated patch. Thanks Serhiy. -- Added file: http://bugs.python.org/file38025/issue21717_v2.diff ___ Python tracker ___ ___

[issue21717] Exclusive mode for ZipFile and TarFile

2015-02-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ping. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue21717] Exclusive mode for ZipFile and TarFile

2014-06-23 Thread Berker Peksag
Berker Peksag added the comment: Here's a patch for tarfile. -- keywords: +patch nosy: +berker.peksag, lars.gustaebel, serhiy.storchaka stage: -> patch review type: -> enhancement versions: -Python 3.4 Added file: http://bugs.python.org/file35740/issue21717_tarfile.diff _

[issue21717] Exclusive mode for ZipFile and TarFile

2014-06-11 Thread Antony Lee
New submission from Antony Lee: I noticed that while lzma and bz2 already support the "x" (create a new file, raise if it already exists) flag, zipfile and tarfile don't know about it yet. It would be an useful addition, just as it is useful for regular open. A quick look at both modules show