[issue4040] ignored exceptions in generators (regression?)

2009-05-28 Thread Doug Hellmann
Changes by Doug Hellmann doug.hellm...@gmail.com: -- nosy: +doughellmann ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4040 ___ ___

[issue4040] ignored exceptions in generators (regression?)

2008-11-15 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: Well, I'll just cross my fingers then. :) -- resolution: - wont fix status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4040

[issue4040] ignored exceptions in generators (regression?)

2008-10-06 Thread Antoine Pitrou
Antoine Pitrou [EMAIL PROTECTED] added the comment: This is not specific to generators, this is due to the fact that a lot of recursion checks have been added all over the place. When an internal function designed to ignore exceptions (for example PyErr_GivenExceptionMatches()) encounters such a

[issue4040] ignored exceptions in generators (regression?)

2008-10-04 Thread Benjamin Peterson
New submission from Benjamin Peterson [EMAIL PROTECTED]: Given this code: def f(): for i in f(): yield i for i in f(): print i 2.6 gives: Exception RuntimeError: 'maximum recursion depth exceeded in __subclasscheck__' in type 'exceptions.RuntimeError' ignored Exception

[issue4040] ignored exceptions in generators (regression?)

2008-10-04 Thread Benjamin Peterson
Changes by Benjamin Peterson [EMAIL PROTECTED]: -- components: +Interpreter Core type: - behavior ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4040 ___