[issue27029] Remove support of deprecated mode 'U' in zipfile

2016-06-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your review Jim. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue27029] Remove support of deprecated mode 'U' in zipfile

2016-06-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset bf8773b054cb by Serhiy Storchaka in branch 'default': Issue #27029: Removed deprecated support of universal newlines mode from ZipFile.open(). https://hg.python.org/cpython/rev/bf8773b054cb -- nosy: +python-dev

[issue27029] Remove support of deprecated mode 'U' in zipfile

2016-06-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27029] Remove support of deprecated mode 'U' in zipfile

2016-05-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Updated patch addresses Jim's comments. -- Added file: http://bugs.python.org/file42958/zipfile_remove_deprecated2.patch ___ Python tracker __

[issue27029] Remove support of deprecated mode 'U' in zipfile

2016-05-15 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch removes support of modes 'U' and 'rU' in zipfile.ZipFile.open. This support was baggy and not consistent with other binary file objects. It was deprecated since Python 3.4. -- components: Library (Lib) files: zipfile_remove_deprecate