File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -450,6 +450,7 @@ Bastian Kleineidam
450450Bob Kline
451451Matthias Klose
452452Jeremy Kloth
453+ Thomas Kluyver
453454Kim Knapp
454455Lenny Kneler
455456Pat Knight
Original file line number Diff line number Diff line change @@ -50,6 +50,9 @@ Core and Builtins
5050Library
5151-------
5252
53+ - Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.
54+ Reported and diagnosed by Thomas Kluyver.
55+
5356- Issue #7689: Allow pickling of dynamically created classes when their
5457 metaclass is registered with copy_reg. Patch by Nicolas M. Thiéry and
5558 Craig Citro.
Original file line number Diff line number Diff line change @@ -55,8 +55,8 @@ static pysqlite_StatementKind detect_statement_type(char* statement)
5555
5656 dst = buf ;
5757 * dst = 0 ;
58- while (isalpha (* src ) && dst - buf < sizeof (buf ) - 2 ) {
59- * dst ++ = tolower (* src ++ );
58+ while (Py_ISALPHA (* src ) && dst - buf < sizeof (buf ) - 2 ) {
59+ * dst ++ = Py_TOLOWER (* src ++ );
6060 }
6161
6262 * dst = 0 ;
You can’t perform that action at this time.
0 commit comments