[issue16341] In examples, "except:" should use new syntax

2012-10-30 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue16341] In examples, "except:" should use new syntax

2012-10-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4e9617d3c514 by Andrew Svetlov in branch '2.7': Issue #16341: convert examples to use except ... as ... syntax. http://hg.python.org/cpython/rev/4e9617d3c514 -- nosy: +python-dev ___ Python tracker

[issue16341] In examples, "except:" should use new syntax

2012-10-28 Thread Ezio Melotti
Ezio Melotti added the comment: The patch LGTM, and there are only 21 changes. -- nosy: +ezio.melotti type: -> enhancement ___ Python tracker ___ ___

[issue16341] In examples, "except:" should use new syntax

2012-10-28 Thread Éric Araujo
Éric Araujo added the comment: I’m of two minds about this. On one hand this syntax avoids silent bugs and is compatible with 3.x, on the other hand if people use the 2.7 docs and use Python 2.4 or 2.5 the examples won’t work. Raymond, what’s your opinion? -- nosy: +eric.araujo, rhet

[issue16341] In examples, "except:" should use new syntax

2012-10-28 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue16341] In examples, "except:" should use new syntax

2012-10-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: +1. Patch for 2.7 is attached. -- keywords: +patch nosy: +asvetlov Added file: http://bugs.python.org/file27763/issue16341.diff ___ Python tracker

[issue16341] In examples, "except:" should use new syntax

2012-10-27 Thread Chris Rebert
Changes by Chris Rebert : -- nosy: +cvrebert ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue16341] In examples, "except:" should use new syntax

2012-10-27 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- assignee: -> docs@python components: +Documentation -Library (Lib) ___ Python tracker ___ ___ Python-

[issue16341] In examples, "except:" should use new syntax

2012-10-27 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- components: +Library (Lib) nosy: +docs@python ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue16341] In examples, "except:" should use new syntax

2012-10-27 Thread Jesús Cea Avión
New submission from Jesús Cea Avión: In python 2.7 documentation, doing "grep -i 'except.*,.*:' *rst" shows quite a few "old style" "except:". I think that "except X, e:" should be transformed to "except X as e:", for clarity, as done in issue #16332. The only thing is that this syntax, used i