[issue13213] generator.throw() behavior

2015-06-20 Thread Martin Panter
Changes by Martin Panter : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> generator.throw() documentation inaccurate ___ Python tracker _

[issue13213] generator.throw() behavior

2014-06-25 Thread Mark Lawrence
Mark Lawrence added the comment: @Petri can you propose a patch for this? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs

[issue13213] generator.throw() behavior

2011-10-18 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue13213] generator.throw() behavior

2011-10-18 Thread Petri Lehtinen
New submission from Petri Lehtinen : The documentation of generator.throw() gives this signature: generator.throw(type[, value[, traceback]]) Looking at the code, it accepts the following arguments: g.throw(ExcType) --> raise ExcType() g.throw(ExcType, None) --> raise ExcType() g