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
5f99fa72
Kaydet (Commit)
5f99fa72
authored
Nis 28, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3,
such as was shipped with Centos 5 and Mac OS X 10.4.
üst
1f6ee73c
d160b122
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
7 deletions
+10
-7
NEWS
Misc/NEWS
+3
-0
cursor.c
Modules/_sqlite/cursor.c
+1
-1
util.c
Modules/_sqlite/util.c
+4
-4
util.h
Modules/_sqlite/util.h
+2
-2
No files found.
Misc/NEWS
Dosyayı görüntüle @
5f99fa72
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
- Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3,
such as was shipped with Centos 5 and Mac OS X 10.4.
- Issue #17413: sys.settrace callbacks were being passed a string instead of an
exception instance for the '
value
' element of the arg tuple if the exception
originated from C code; now an exception instance is always provided.
...
...
Modules/_sqlite/cursor.c
Dosyayı görüntüle @
5f99fa72
...
...
@@ -701,7 +701,7 @@ PyObject* _pysqlite_query_execute(pysqlite_Cursor* self, int multiple, PyObject*
Py_DECREF
(
self
->
lastrowid
);
if
(
!
multiple
&&
statement_type
==
STATEMENT_INSERT
)
{
sqlite
3
_int64
lastrowid
;
sqlite_int64
lastrowid
;
Py_BEGIN_ALLOW_THREADS
lastrowid
=
sqlite3_last_insert_rowid
(
self
->
connection
->
db
);
Py_END_ALLOW_THREADS
...
...
Modules/_sqlite/util.c
Dosyayı görüntüle @
5f99fa72
...
...
@@ -111,7 +111,7 @@ int _pysqlite_seterror(sqlite3* db, sqlite3_stmt* st)
#endif
PyObject
*
_pysqlite_long_from_int64
(
sqlite
3
_int64
value
)
_pysqlite_long_from_int64
(
sqlite_int64
value
)
{
#ifdef HAVE_LONG_LONG
# if SIZEOF_LONG_LONG < 8
...
...
@@ -135,7 +135,7 @@ _pysqlite_long_from_int64(sqlite3_int64 value)
return
PyLong_FromLong
(
value
);
}
sqlite
3
_int64
sqlite_int64
_pysqlite_long_as_int64
(
PyObject
*
py_val
)
{
int
overflow
;
...
...
@@ -158,8 +158,8 @@ _pysqlite_long_as_int64(PyObject * py_val)
#endif
return
value
;
}
else
if
(
sizeof
(
value
)
<
sizeof
(
sqlite
3
_int64
))
{
sqlite
3
_int64
int64val
;
else
if
(
sizeof
(
value
)
<
sizeof
(
sqlite_int64
))
{
sqlite_int64
int64val
;
if
(
_PyLong_AsByteArray
((
PyLongObject
*
)
py_val
,
(
unsigned
char
*
)
&
int64val
,
sizeof
(
int64val
),
IS_LITTLE_ENDIAN
,
1
/* signed */
)
>=
0
)
{
...
...
Modules/_sqlite/util.h
Dosyayı görüntüle @
5f99fa72
...
...
@@ -36,7 +36,7 @@ int pysqlite_step(sqlite3_stmt* statement, pysqlite_Connection* connection);
*/
int
_pysqlite_seterror
(
sqlite3
*
db
,
sqlite3_stmt
*
st
);
PyObject
*
_pysqlite_long_from_int64
(
sqlite
3
_int64
value
);
sqlite
3
_int64
_pysqlite_long_as_int64
(
PyObject
*
value
);
PyObject
*
_pysqlite_long_from_int64
(
sqlite_int64
value
);
sqlite_int64
_pysqlite_long_as_int64
(
PyObject
*
value
);
#endif
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