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
40c6b47c
Kaydet (Commit)
40c6b47c
authored
Ock 05, 2006
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix errors on 64-bit platforms. Will backport
üst
5f861429
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
NEWS
Misc/NEWS
+2
-0
_bsddb.c
Modules/_bsddb.c
+4
-4
No files found.
Misc/NEWS
Dosyayı görüntüle @
40c6b47c
...
...
@@ -209,6 +209,8 @@ Core and builtins
Extension
Modules
-----------------
-
Fix
64
-
bit
problems
in
bsddb
.
-
Patch
#
1365916
:
fix
some
unsafe
64
-
bit
mmap
methods
.
-
Bug
#
1290333
:
Added
a
workaround
for
cjkcodecs
' _codecs_cn build
...
...
Modules/_bsddb.c
Dosyayı görüntüle @
40c6b47c
...
...
@@ -1522,7 +1522,7 @@ DB_pget(DBObject* self, PyObject* args, PyObject* kwargs)
if
(
self
->
primaryDBType
==
DB_RECNO
||
self
->
primaryDBType
==
DB_QUEUE
)
pkeyObj
=
PyInt_FromLong
(
*
(
long
*
)
pkey
.
data
);
pkeyObj
=
PyInt_FromLong
(
*
(
int
*
)
pkey
.
data
);
else
pkeyObj
=
PyString_FromStringAndSize
(
pkey
.
data
,
pkey
.
size
);
...
...
@@ -1531,7 +1531,7 @@ DB_pget(DBObject* self, PyObject* args, PyObject* kwargs)
PyObject
*
keyObj
;
int
type
=
_DB_get_type
(
self
);
if
(
type
==
DB_RECNO
||
type
==
DB_QUEUE
)
keyObj
=
PyInt_FromLong
(
*
(
long
*
)
key
.
data
);
keyObj
=
PyInt_FromLong
(
*
(
int
*
)
key
.
data
);
else
keyObj
=
PyString_FromStringAndSize
(
key
.
data
,
key
.
size
);
retval
=
Py_BuildValue
(
"OOO"
,
keyObj
,
pkeyObj
,
dataObj
);
...
...
@@ -3172,7 +3172,7 @@ DBC_pget(DBCursorObject* self, PyObject* args, PyObject *kwargs)
if
(
self
->
mydb
->
primaryDBType
==
DB_RECNO
||
self
->
mydb
->
primaryDBType
==
DB_QUEUE
)
pkeyObj
=
PyInt_FromLong
(
*
(
long
*
)
pkey
.
data
);
pkeyObj
=
PyInt_FromLong
(
*
(
int
*
)
pkey
.
data
);
else
pkeyObj
=
PyString_FromStringAndSize
(
pkey
.
data
,
pkey
.
size
);
...
...
@@ -3181,7 +3181,7 @@ DBC_pget(DBCursorObject* self, PyObject* args, PyObject *kwargs)
PyObject
*
keyObj
;
int
type
=
_DB_get_type
(
self
->
mydb
);
if
(
type
==
DB_RECNO
||
type
==
DB_QUEUE
)
keyObj
=
PyInt_FromLong
(
*
(
long
*
)
key
.
data
);
keyObj
=
PyInt_FromLong
(
*
(
int
*
)
key
.
data
);
else
keyObj
=
PyString_FromStringAndSize
(
key
.
data
,
key
.
size
);
retval
=
Py_BuildValue
(
"OOO"
,
keyObj
,
pkeyObj
,
dataObj
);
...
...
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