[issue16716] Deprecate OSError aliases in the doc

2014-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Close the issue again after fixing Antoine's objection. -- status: open -> closed ___ Python tracker ___ ___

[issue16716] Deprecate OSError aliases in the doc

2014-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: The "deprecated markup" is removed. Sorry. Thanks to quick report. On Tue, Apr 1, 2014 at 2:08 AM, Roundup Robot wrote: > > Roundup Robot added the comment: > > New changeset 7b219429c404 by Andrew Svetlov in branch '3.4': > #16716: remove deprecation warning >

[issue16716] Deprecate OSError aliases in the doc

2014-03-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7b219429c404 by Andrew Svetlov in branch '3.4': #16716: remove deprecation warning http://hg.python.org/cpython/rev/7b219429c404 New changeset 1c6c2ec8916a by Andrew Svetlov in branch 'default': #16716: remove deprecation warning http://hg.python.or

[issue16716] Deprecate OSError aliases in the doc

2014-03-31 Thread Antoine Pitrou
Antoine Pitrou added the comment: Oops, trying again: The modify() method is not deprecated, so the "deprecated" markup is inappropriate here. -- ___ Python tracker ___

[issue16716] Deprecate OSError aliases in the doc

2014-03-31 Thread Antoine Pitrou
Antoine Pitrou added the comment: Andrew, please revert this. The modify() method is deprecated, so the "deprecated" markup is inappropriate here. -- status: closed -> open ___ Python tracker _

[issue16716] Deprecate OSError aliases in the doc

2014-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Close the issue after #f5dda52a4ccd and #8d5f005a0da3 -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed versions: +Python 3.5 ___ Python tracker

[issue16716] Deprecate OSError aliases in the doc

2014-03-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset c0c17718301f by Andrew Svetlov in branch 'default': Merge 3.4 (#16716) http://hg.python.org/cpython/rev/c0c17718301f -- ___ Python tracker

[issue16716] Deprecate OSError aliases in the doc

2014-03-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Pushed. Thanks, priya -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue16716] Deprecate OSError aliases in the doc

2014-03-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5ad1d523b342 by Andrew Svetlov in branch 'default': Merge 3.4 (#16716) http://hg.python.org/cpython/rev/5ad1d523b342 -- nosy: +python-dev ___ Python tracker __

[issue16716] Deprecate OSError aliases in the doc

2014-03-30 Thread priya
Changes by priya : -- keywords: +patch Added file: http://bugs.python.org/file34669/exception.patch ___ Python tracker ___ ___ Python-

[issue16716] Deprecate OSError aliases in the doc

2014-03-15 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue16716] Deprecate OSError aliases in the doc

2012-12-18 Thread R. David Murray
R. David Murray added the comment: It seems sensible to me. -- nosy: +r.david.murray ___ Python tracker ___ ___ Python-bugs-list maili

[issue16716] Deprecate OSError aliases in the doc

2012-12-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: No objections from me. It would be good to have other people's opinions, though. -- ___ Python tracker ___ _

[issue16716] Deprecate OSError aliases in the doc

2012-12-18 Thread Andrew Svetlov
Andrew Svetlov added the comment: Don't know about library/exceptions.rst For other modules (socket, select etc.) I like to use ".. deprecated:: 3.3" markup. Antoine, do you have objections? -- ___ Python tracker

[issue16716] Deprecate OSError aliases in the doc

2012-12-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: "The following exceptions are kept for compatibility with previous versions; starting from Python 3.3, they are aliases of OSError." Do you want to add an explicit compatibility statement there? -- nosy: +pitrou ___

[issue16716] Deprecate OSError aliases in the doc

2012-12-18 Thread Andrew Svetlov
New submission from Andrew Svetlov: The list of aliases is: IOError, EnvironmentError, WindowsError, mmap.error, socket.error, os.error and select.error Documentation should have deprecation message guessing to use OSError instead. -- messages: 177704 nosy: asvetlov priority: normal se