Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
8e4dd08f
Kaydet (Commit)
8e4dd08f
authored
Eki 04, 2011
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.
Reported and diagnosed by Thomas Kluyver.
üst
b244d075
1665d2c7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
cursor.c
Modules/_sqlite/cursor.c
+2
-2
No files found.
Misc/ACKS
Dosyayı görüntüle @
8e4dd08f
...
...
@@ -516,6 +516,7 @@ Bastian Kleineidam
Bob Kline
Matthias Klose
Jeremy Kloth
Thomas Kluyver
Kim Knapp
Lenny Kneler
Pat Knight
...
...
Misc/NEWS
Dosyayı görüntüle @
8e4dd08f
...
...
@@ -294,6 +294,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.
...
...
Modules/_sqlite/cursor.c
Dosyayı görüntüle @
8e4dd08f
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment