[Python-checkins] r85660 - python/branches/py3k/Modules/_sqlite/connection.h

martin.v.loewis python-checkins at python.org
Sun Oct 17 21:48:29 CEST 2010


Author: martin.v.loewis
Date: Sun Oct 17 21:48:29 2010
New Revision: 85660

Log:
Fix T_BOOL bug of issue 8845.


Modified:
   python/branches/py3k/Modules/_sqlite/connection.h

Modified: python/branches/py3k/Modules/_sqlite/connection.h
==============================================================================
--- python/branches/py3k/Modules/_sqlite/connection.h	(original)
+++ python/branches/py3k/Modules/_sqlite/connection.h	Sun Oct 17 21:48:29 2010
@@ -39,7 +39,7 @@
 
     /* 1 if we are currently within a transaction, i. e. if a BEGIN has been
      * issued */
-    int inTransaction;
+    char inTransaction;
 
     /* the type detection mode. Only 0, PARSE_DECLTYPES, PARSE_COLNAMES or a
      * bitwise combination thereof makes sense */


More information about the Python-checkins mailing list