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
84562350
Kaydet (Commit)
84562350
authored
Eki 20, 2005
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Get bsddb module to compile with version 3.2 of BSD DB.
üst
95c1e506
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
_bsddb.c
Modules/_bsddb.c
+8
-0
No files found.
Modules/_bsddb.c
Dosyayı görüntüle @
84562350
...
...
@@ -1969,6 +1969,7 @@ DB_set_bt_minkey(DBObject* self, PyObject* args)
RETURN_NONE
();
}
#if (DBVER >= 33)
static
int
_default_cmp
(
const
DBT
*
leftKey
,
const
DBT
*
rightKey
)
...
...
@@ -2120,6 +2121,7 @@ DB_set_bt_compare (DBObject* self, PyObject* args)
RETURN_IF_ERR
();
RETURN_NONE
();
}
#endif
/* DBVER >= 33 */
static
PyObject
*
...
...
@@ -3956,6 +3958,7 @@ DBEnv_set_lg_max(DBEnvObject* self, PyObject* args)
}
#if (DBVER >= 33)
static
PyObject
*
DBEnv_set_lg_regionmax
(
DBEnvObject
*
self
,
PyObject
*
args
)
{
...
...
@@ -3971,6 +3974,7 @@ DBEnv_set_lg_regionmax(DBEnvObject* self, PyObject* args)
RETURN_IF_ERR
();
RETURN_NONE
();
}
#endif
static
PyObject
*
...
...
@@ -4593,7 +4597,9 @@ static PyMethodDef DB_methods[] = {
{
"remove"
,
(
PyCFunction
)
DB_remove
,
METH_VARARGS
|
METH_KEYWORDS
},
{
"rename"
,
(
PyCFunction
)
DB_rename
,
METH_VARARGS
},
{
"set_bt_minkey"
,
(
PyCFunction
)
DB_set_bt_minkey
,
METH_VARARGS
},
#if (DBVER >= 33)
{
"set_bt_compare"
,
(
PyCFunction
)
DB_set_bt_compare
,
METH_VARARGS
},
#endif
{
"set_cachesize"
,
(
PyCFunction
)
DB_set_cachesize
,
METH_VARARGS
},
#if (DBVER >= 41)
{
"set_encrypt"
,
(
PyCFunction
)
DB_set_encrypt
,
METH_VARARGS
|
METH_KEYWORDS
},
...
...
@@ -4683,7 +4689,9 @@ static PyMethodDef DBEnv_methods[] = {
{
"set_lg_bsize"
,
(
PyCFunction
)
DBEnv_set_lg_bsize
,
METH_VARARGS
},
{
"set_lg_dir"
,
(
PyCFunction
)
DBEnv_set_lg_dir
,
METH_VARARGS
},
{
"set_lg_max"
,
(
PyCFunction
)
DBEnv_set_lg_max
,
METH_VARARGS
},
#if (DBVER >= 33)
{
"set_lg_regionmax"
,(
PyCFunction
)
DBEnv_set_lg_regionmax
,
METH_VARARGS
},
#endif
{
"set_lk_detect"
,
(
PyCFunction
)
DBEnv_set_lk_detect
,
METH_VARARGS
},
{
"set_lk_max"
,
(
PyCFunction
)
DBEnv_set_lk_max
,
METH_VARARGS
},
#if (DBVER >= 32)
...
...
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