[issue20026] sqlite: handle correctly invalid isolation_level

2014-07-13 Thread Berker Peksag
Changes by Berker Peksag : -- stage: commit review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mail

[issue20026] sqlite: handle correctly invalid isolation_level

2014-07-12 Thread STINNER Victor
STINNER Victor added the comment: The patch has been commited, the issue can be closed. Yes pending was a mistake. -- ___ Python tracker ___ _

[issue20026] sqlite: handle correctly invalid isolation_level

2014-07-12 Thread Mark Lawrence
Mark Lawrence added the comment: Accidentally set to pending? -- nosy: +BreamoreBoy status: pending -> open ___ Python tracker ___ ___

[issue20026] sqlite: handle correctly invalid isolation_level

2013-12-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 572e4b054899 by Victor Stinner in branch '2.7': Issue #20026: Fix the sqlite module to handle correctly invalid isolation level http://hg.python.org/cpython/rev/572e4b054899 -- ___ Python tracker

[issue20026] sqlite: handle correctly invalid isolation_level

2013-12-19 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed status: open -> pending versions: +Python 2.7, Python 3.3 ___ Python tracker ___

[issue20026] sqlite: handle correctly invalid isolation_level

2013-12-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 11a161cf0e5d by Victor Stinner in branch '3.3': Issue #20026: Fix the sqlite module to handle correctly invalid isolation level http://hg.python.org/cpython/rev/11a161cf0e5d New changeset f9b6c8ef55b6 by Victor Stinner in branch 'default': (Merge 3.

[issue20026] sqlite: handle correctly invalid isolation_level

2013-12-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- assignee: -> haypo components: +Library (Lib) nosy: +serhiy.storchaka stage: -> commit review type: -> crash ___ Python tracker __

[issue20026] sqlite: handle correctly invalid isolation_level

2013-12-19 Thread STINNER Victor
STINNER Victor added the comment: $ python Python 3.4.0b1 (default:298d98486794+, Dec 19 2013, 13:45:07) [GCC 4.8.2 20131017 (Red Hat 4.8.2-1)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import sqlite3 >>> con=sqlite3.connect(":memory:", isolation_level=3

[issue20026] sqlite: handle correctly invalid isolation_level

2013-12-19 Thread STINNER Victor
New submission from STINNER Victor: The C function pysqlite_connection_init() doesn't check if pysqlite_connection_set_isolation_level() failed or not. Attached patch fixes that. -- files: sqlite.patch keywords: patch messages: 206610 nosy: haypo priority: normal severity: normal statu