Charles <colei...@gmail.com> added the comment:

> With isolation_level set to None, the sqlite3 library is in autocommit mode, 
> so changes will get committed immediately inside the with, which is simply 
> broken.

Not necessarily. When sqlite is in autocommit mode, you can still open 
transactions by executing a BEGIN query. In fact, that's the main reason to use 
isolation_level=None -- you can manage the transactions yourself.

----------
nosy: +coleifer

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue16958>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to