[issue7670] _sqlite3: Block *all* operations on a closed Connection object

2010-03-07 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I'm going to let this one stay for 2.6.5 since we need another rc anyway. Thanks for the fix! -- status: open -> closed ___ Python tracker __

[issue7670] _sqlite3: Block *all* operations on a closed Connection object

2010-03-06 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- versions: -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue7670] _sqlite3: Block *all* operations on a closed Connection object

2010-03-05 Thread Gerhard Häring
Gerhard Häring added the comment: As requested per Barry, marking this as release blocker for 2.6. -- keywords: +26backport priority: -> release blocker stage: patch review -> commit review status: closed -> open ___ Python tracker

[issue7670] _sqlite3: Block *all* operations on a closed Connection object

2010-03-05 Thread STINNER Victor
STINNER Victor added the comment: Commit numbers: r78688 (trunk), r78698 (py3k), r78699 (2.6), r78700 (3.1). 2.6 branch is froze because 2.6.5RC1 was released and 2.6.5 final is planned for next week. Ask barry if you should revert your commit or not r78699. -- nosy: +barry _

[issue7670] _sqlite3: Block *all* operations on a closed Connection object

2010-03-05 Thread Gerhard Häring
Gerhard Häring added the comment: Now also fixed in 2.6 and 3.1 maintenance branches. -- ___ Python tracker ___ ___ Python-bugs-list m

[issue7670] _sqlite3: Block *all* operations on a closed Connection object

2010-03-05 Thread Gerhard Häring
Gerhard Häring added the comment: Applied in trunk. Thanks! -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue7670] _sqlite3: Block *all* operations on a closed Connection object

2010-01-10 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: -> ghaering nosy: +ghaering stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue7670] _sqlite3: Block *all* operations on a closed Connection object

2010-01-10 Thread STINNER Victor
New submission from STINNER Victor : Add call to pysqlite_check_connection() on the follow methods: * create_function() * create_aggregate() * set_authorizer() * set_progress_handler() * __call__() Eg. fix the following segfault: c = Connection("test") c.close() c.set_authorizer(