]> granicus.if.org Git - python/commitdiff
Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.
authorAntoine Pitrou <solipsis@pitrou.net>
Tue, 4 Oct 2011 11:35:28 +0000 (13:35 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Tue, 4 Oct 2011 11:35:28 +0000 (13:35 +0200)
Reported and diagnosed by Thomas Kluyver.

Misc/ACKS
Misc/NEWS
Modules/_sqlite/cursor.c

index 4f2ea13f6e50b739bff7676a60b3219f7f8b62ee..3dc3de137031693975308e19e88ee1f6c5e0b653 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -488,6 +488,7 @@ Bastian Kleineidam
 Bob Kline
 Matthias Klose
 Jeremy Kloth
+Thomas Kluyver
 Kim Knapp
 Lenny Kneler
 Pat Knight
index dd98665c884d18e44f8cf0c3329d6d7b42d26f83..6b558b49e84dbdc1fcb81030b1968733c57f7ea8 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.
+  Reported and diagnosed by Thomas Kluyver.
+
 - Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation
   if the underlying raw stream is unseekable, even if the seek could be
   satisfied using the internal buffer.  Patch by John O'Connor.
index 97908a3093961d6f4cd22862b7f4445901f698d0..b9a4358b1a9d18237900dff5cb38d2419416afaa 100644 (file)
@@ -55,8 +55,8 @@ static pysqlite_StatementKind detect_statement_type(const char* statement)
 
     dst = buf;
     *dst = 0;
-    while (isalpha(*src) && dst - buf < sizeof(buf) - 2) {
-        *dst++ = tolower(*src++);
+    while (Py_ISALPHA(*src) && dst - buf < sizeof(buf) - 2) {
+        *dst++ = Py_TOLOWER(*src++);
     }
 
     *dst = 0;