aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2010-10-17 19:48:29 +0000
committerMartin v. Löwis <martin@v.loewis.de>2010-10-17 19:48:29 +0000
commita2e7d9bdc12b451da58d6660abfb6a80d34defb5 (patch)
tree42e8b5832a9476edff2e37999edcaae904d90fc8 /Modules
parenttest_httpservers: skip CGI tests if Python executable path is not encodable (diff)
downloadcpython-a2e7d9bdc12b451da58d6660abfb6a80d34defb5.tar.gz
cpython-a2e7d9bdc12b451da58d6660abfb6a80d34defb5.tar.bz2
cpython-a2e7d9bdc12b451da58d6660abfb6a80d34defb5.zip
Fix T_BOOL bug of issue 8845.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_sqlite/connection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_sqlite/connection.h b/Modules/_sqlite/connection.h
index 58c73971f92..468446d9142 100644
--- a/Modules/_sqlite/connection.h
+++ b/Modules/_sqlite/connection.h
@@ -39,7 +39,7 @@ typedef struct
/* 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 */