[issue10811] sqlite segfault with generators

2012-02-06 Thread Petri Lehtinen
Petri Lehtinen added the comment: It's now fixed in all branches. Thanks for reporting! -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue10811] sqlite segfault with generators

2012-02-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset 631e99961c5f by Petri Lehtinen in branch '2.7': Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. http://hg.python.org/cpython/rev/631e99961c5f New changeset d51ceef4b62f by Petri Lehtinen in branch '

[issue10811] sqlite segfault with generators

2012-02-03 Thread Petri Lehtinen
Petri Lehtinen added the comment: It seems to me that the fix still needs to be backported to 3.2 and 2.7. -- nosy: +petri.lehtinen status: pending -> open versions: +Python 2.7, Python 3.3 ___ Python tracker

[issue10811] sqlite segfault with generators

2011-11-24 Thread Ezio Melotti
Ezio Melotti added the comment: Can this be closed? -- nosy: +ezio.melotti status: open -> pending ___ Python tracker ___ ___ Python-

[issue10811] sqlite segfault with generators

2011-05-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2fdabf0dc8f7 by Victor Stinner in branch 'default': Issue #10811: Use TestCase.assertRaises() in the new test http://hg.python.org/cpython/rev/2fdabf0dc8f7 -- ___ Python tracker

[issue10811] sqlite segfault with generators

2011-05-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset c6523d6faef4 by Gerhard Haering in branch 'default': #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. http://hg.python.org/cpython/rev/c6523d6faef4 -- nosy: +python-dev ___

[issue10811] sqlite segfault with generators

2011-01-02 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: -> ghaering nosy: +ghaering ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue10811] sqlite segfault with generators

2011-01-02 Thread Erick Tryzelaar
New submission from Erick Tryzelaar : I found that the sqlite3 function executemany module crashes when passed in a generator that it iself is executing a query. It looks like this confuses the statement cache, and causes it to get cleared inappropriately in this case. I've attached a file tha