[issue11669] Clarify Lang Ref "Compound statements" footnote

2011-07-21 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue11669] Clarify Lang Ref "Compound statements" footnote

2011-06-26 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! -- assignee: docs@python -> ezio.melotti nosy: +ezio.melotti resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue11669] Clarify Lang Ref "Compound statements" footnote

2011-06-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset b11e7bc76d07 by Ezio Melotti in branch '2.7': #11669: rephrase footnote in the Compound Statements page. http://hg.python.org/cpython/rev/b11e7bc76d07 New changeset 74e9f94d8440 by Ezio Melotti in branch '3.2': #11669: rephrase footnote in the Comp

[issue11669] Clarify Lang Ref "Compound statements" footnote

2011-06-25 Thread Sandro Tosi
Changes by Sandro Tosi : -- keywords: -needs review Added file: http://bugs.python.org/file22471/issue11669-default.patch ___ Python tracker ___

[issue11669] Clarify Lang Ref "Compound statements" footnote

2011-06-25 Thread Sandro Tosi
Sandro Tosi added the comment: Ok, I send it too soon... attached is a patch to fix this bug (it applies on default, 3.2 and 2.7). -- ___ Python tracker ___ ___

[issue11669] Clarify Lang Ref "Compound statements" footnote

2011-06-25 Thread Sandro Tosi
Sandro Tosi added the comment: Just to make explicit what's happening: >>> try: ... try: ... raise TypeError() ... finally: ... raise ValueError() ... except TypeError as e: ... print('mmm') ... Traceback (most recent call last): File "", line 3, in TypeError D

[issue11669] Clarify Lang Ref "Compound statements" footnote

2011-06-13 Thread R. David Murray
Changes by R. David Murray : -- versions: -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue11669] Clarify Lang Ref "Compound statements" footnote

2011-06-13 Thread R. David Murray
R. David Murray added the comment: Sometimes we use the patch keyword for doc issues where someone has suggested a specific new wording but not generated an actual patch. That seems to be the case here. -- nosy: +r.david.murray ___ Python tracker

[issue11669] Clarify Lang Ref "Compound statements" footnote

2011-06-07 Thread Petri Lehtinen
Petri Lehtinen added the comment: Keywords suggest that there should to be a patch here. Where is it? -- nosy: +petri.lehtinen ___ Python tracker ___ ___

[issue11669] Clarify Lang Ref "Compound statements" footnote

2011-03-25 Thread Éric Araujo
Changes by Éric Araujo : -- keywords: +needs review, patch stage: -> patch review versions: -Python 2.5, Python 2.6, Python 3.4 ___ Python tracker ___ _

[issue11669] Clarify Lang Ref "Compound statements" footnote

2011-03-25 Thread Graham Wideman
New submission from Graham Wideman : In Language Ref section 7 "Compound Statements": http://docs.python.org/release/3.1.3/reference/compound_stmts.html there's a footnote regarding what happens to unhandled exceptions in a try-except statement: [1] The exception is propagated to the invocation