[Python-3000-checkins] r56928 - python/branches/py3k/Modules/_sqlite/connection.c

Guido van Rossum guido at python.org
Sat Aug 11 17:42:04 CEST 2007


blush :-(

On 8/11/07, georg.brandl <python-3000-checkins at python.org> wrote:
> Author: georg.brandl
> Date: Sat Aug 11 17:39:18 2007
> New Revision: 56928
>
> Modified:
>    python/branches/py3k/Modules/_sqlite/connection.c
> Log:
> Fix automatic replacing mistake.
>
>
> Modified: python/branches/py3k/Modules/_sqlite/connection.c
> ==============================================================================
> --- python/branches/py3k/Modules/_sqlite/connection.c   (original)
> +++ python/branches/py3k/Modules/_sqlite/connection.c   Sat Aug 11 17:39:18 2007
> @@ -378,7 +378,7 @@
>          pysqlite_reset_all_statements(self);
>
>          Py_BEGIN_ALLOW_THREADS
> -        rc = sqlite3_prepare(self->db, "READONLYLLBACK", -1, &statement, &tail);
> +        rc = sqlite3_prepare(self->db, "ROLLBACK", -1, &statement, &tail);
>          Py_END_ALLOW_THREADS
>          if (rc != SQLITE_OK) {
>              _pysqlite_seterror(self->db);
> _______________________________________________
> Python-3000-checkins mailing list
> Python-3000-checkins at python.org
> http://mail.python.org/mailman/listinfo/python-3000-checkins
>


-- 
--Guido van Rossum (home page: http://www.python.org/~guido/)


More information about the Python-3000-checkins mailing list