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
9260e773
Kaydet (Commit)
9260e773
authored
Nis 17, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20184: Converted _dbm and _gdbm modules to Argument Clinic.
üst
6d7dced1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
403 additions
and
71 deletions
+403
-71
_dbmmodule.c
Modules/_dbmmodule.c
+67
-61
_gdbmmodule.c
Modules/_gdbmmodule.c
+0
-0
_dbmmodule.c.h
Modules/clinic/_dbmmodule.c.h
+80
-10
_gdbmmodule.c.h
Modules/clinic/_gdbmmodule.c.h
+256
-0
No files found.
Modules/_dbmmodule.c
Dosyayı görüntüle @
9260e773
...
...
@@ -29,10 +29,10 @@ static char *which_dbm = "Berkeley DB";
#endif
/*[clinic input]
module dbm
class dbm.dbm "dbmobject *" "&Dbmtype"
module
_
dbm
class
_
dbm.dbm "dbmobject *" "&Dbmtype"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=9
2450564684a69a3
]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=9
b1aa8756d16150e
]*/
typedef
struct
{
PyObject_HEAD
...
...
@@ -51,15 +51,6 @@ static PyTypeObject Dbmtype;
static
PyObject
*
DbmError
;
/*[python input]
class dbmobject_converter(self_converter):
type = "dbmobject *"
def pre_render(self):
super().pre_render()
self.name = 'dp'
[python start generated code]*/
/*[python end generated code: output=da39a3ee5e6b4b0d input=6ad536357913879a]*/
static
PyObject
*
newdbmobject
(
const
char
*
file
,
int
flags
,
int
mode
)
{
...
...
@@ -183,29 +174,43 @@ static PyMappingMethods dbm_as_mapping = {
(
objobjargproc
)
dbm_ass_sub
,
/*mp_ass_subscript*/
};
/*[clinic input]
_dbm.dbm.close
Close the database.
[clinic start generated code]*/
static
PyObject
*
dbm__close
(
dbmobject
*
dp
,
PyObject
*
unused
)
_dbm_dbm_close_impl
(
dbmobject
*
self
)
/*[clinic end generated code: output=c8dc5b6709600b86 input=046db72377d51be8]*/
{
if
(
dp
->
di_dbm
)
dbm_close
(
dp
->
di_dbm
);
dp
->
di_dbm
=
NULL
;
if
(
self
->
di_dbm
)
dbm_close
(
self
->
di_dbm
);
self
->
di_dbm
=
NULL
;
Py_INCREF
(
Py_None
);
return
Py_None
;
}
/*[clinic input]
_dbm.dbm.keys
Return a list of all keys in the database.
[clinic start generated code]*/
static
PyObject
*
dbm_keys
(
dbmobject
*
dp
,
PyObject
*
unused
)
_dbm_dbm_keys_impl
(
dbmobject
*
self
)
/*[clinic end generated code: output=434549f7c121b33c input=d210ba778cd9c68a]*/
{
PyObject
*
v
,
*
item
;
datum
key
;
int
err
;
check_dbmobject_open
(
dp
);
check_dbmobject_open
(
self
);
v
=
PyList_New
(
0
);
if
(
v
==
NULL
)
return
NULL
;
for
(
key
=
dbm_firstkey
(
dp
->
di_dbm
);
key
.
dptr
;
key
=
dbm_nextkey
(
dp
->
di_dbm
))
{
for
(
key
=
dbm_firstkey
(
self
->
di_dbm
);
key
.
dptr
;
key
=
dbm_nextkey
(
self
->
di_dbm
))
{
item
=
PyBytes_FromStringAndSize
(
key
.
dptr
,
key
.
dsize
);
if
(
item
==
NULL
)
{
Py_DECREF
(
v
);
...
...
@@ -267,29 +272,26 @@ static PySequenceMethods dbm_as_sequence = {
};
/*[clinic input]
dbm.dbm.get
self: dbmobject
_dbm.dbm.get
key: str(types={'str', 'robuffer'}, length=True)
default: object
= None
default: object
(c_default="NULL") = b''
/
Return the value for key if present, otherwise default.
[clinic start generated code]*/
static
PyObject
*
dbm_dbm_get_impl
(
dbmobject
*
dp
,
const
char
*
key
,
Py_ssize_clean_t
key_length
,
PyObject
*
default_value
)
/*[clinic end generated code: output=
4f5c0e523eaf1251 input=f81478bc211895ef
]*/
_dbm_dbm_get_impl
(
dbmobject
*
self
,
const
char
*
key
,
Py_ssize_clean_t
key_length
,
PyObject
*
default_value
)
/*[clinic end generated code: output=
b44f95eba8203d93 input=fee97bbe85e84822
]*/
{
datum
dbm_key
,
val
;
dbm_key
.
dptr
=
(
char
*
)
key
;
dbm_key
.
dsize
=
key_length
;
check_dbmobject_open
(
dp
);
val
=
dbm_fetch
(
dp
->
di_dbm
,
dbm_key
);
check_dbmobject_open
(
self
);
val
=
dbm_fetch
(
self
->
di_dbm
,
dbm_key
);
if
(
val
.
dptr
!=
NULL
)
return
PyBytes_FromStringAndSize
(
val
.
dptr
,
val
.
dsize
);
...
...
@@ -297,46 +299,55 @@ dbm_dbm_get_impl(dbmobject *dp, const char *key, Py_ssize_clean_t key_length,
return
default_value
;
}
/*[clinic input]
_dbm.dbm.setdefault
key: str(types={'str', 'robuffer'}, length=True)
default: object(c_default="NULL") = b''
/
Return the value for key if present, otherwise default.
If key is not in the database, it is inserted with default as the value.
[clinic start generated code]*/
static
PyObject
*
dbm_setdefault
(
dbmobject
*
dp
,
PyObject
*
args
)
_dbm_dbm_setdefault_impl
(
dbmobject
*
self
,
const
char
*
key
,
Py_ssize_clean_t
key_length
,
PyObject
*
default_value
)
/*[clinic end generated code: output=52545886cf272161 input=6a3b99ae91f20203]*/
{
datum
key
,
val
;
PyObject
*
defvalue
=
NULL
;
char
*
tmp_ptr
;
datum
dbm_key
,
val
;
Py_ssize_t
tmp_size
;
if
(
!
PyArg_ParseTuple
(
args
,
"s#|O:setdefault"
,
&
tmp_ptr
,
&
tmp_size
,
&
defvalue
))
return
NULL
;
key
.
dptr
=
tmp_ptr
;
key
.
dsize
=
tmp_size
;
check_dbmobject_open
(
dp
);
val
=
dbm_fetch
(
dp
->
di_dbm
,
key
);
dbm_key
.
dptr
=
(
char
*
)
key
;
dbm_key
.
dsize
=
key_length
;
check_dbmobject_open
(
self
);
val
=
dbm_fetch
(
self
->
di_dbm
,
dbm_key
);
if
(
val
.
dptr
!=
NULL
)
return
PyBytes_FromStringAndSize
(
val
.
dptr
,
val
.
dsize
);
if
(
defvalue
==
NULL
)
{
defvalue
=
PyBytes_FromStringAndSize
(
NULL
,
0
);
if
(
defvalue
==
NULL
)
if
(
def
ault_
value
==
NULL
)
{
def
ault_
value
=
PyBytes_FromStringAndSize
(
NULL
,
0
);
if
(
def
ault_
value
==
NULL
)
return
NULL
;
val
.
dptr
=
NULL
;
val
.
dsize
=
0
;
}
else
{
if
(
!
PyArg_Parse
(
defvalue
,
"s#"
,
&
val
.
dptr
,
&
tmp_size
)
)
{
if
(
!
PyArg_Parse
(
def
ault_
value
,
"s#"
,
&
val
.
dptr
,
&
tmp_size
)
)
{
PyErr_SetString
(
PyExc_TypeError
,
"dbm mappings have byte string elements only"
);
return
NULL
;
}
val
.
dsize
=
tmp_size
;
Py_INCREF
(
defvalue
);
Py_INCREF
(
def
ault_
value
);
}
if
(
dbm_store
(
dp
->
di_dbm
,
key
,
val
,
DBM_INSERT
)
<
0
)
{
dbm_clearerr
(
dp
->
di_dbm
);
if
(
dbm_store
(
self
->
di_dbm
,
dbm_
key
,
val
,
DBM_INSERT
)
<
0
)
{
dbm_clearerr
(
self
->
di_dbm
);
PyErr_SetString
(
DbmError
,
"cannot add item to database"
);
Py_DECREF
(
defvalue
);
Py_DECREF
(
def
ault_
value
);
return
NULL
;
}
return
defvalue
;
return
def
ault_
value
;
}
static
PyObject
*
...
...
@@ -355,15 +366,10 @@ dbm__exit__(PyObject *self, PyObject *args)
static
PyMethodDef
dbm_methods
[]
=
{
{
"close"
,
(
PyCFunction
)
dbm__close
,
METH_NOARGS
,
"close()
\n
Close the database."
},
{
"keys"
,
(
PyCFunction
)
dbm_keys
,
METH_NOARGS
,
"keys() -> list
\n
Return a list of all keys in the database."
},
DBM_DBM_GET_METHODDEF
{
"setdefault"
,
(
PyCFunction
)
dbm_setdefault
,
METH_VARARGS
,
"setdefault(key[, default]) -> value
\n
"
"Return the value for key if present, otherwise default. If key
\n
"
"is not in the database, it is inserted with default as the value."
},
_DBM_DBM_CLOSE_METHODDEF
_DBM_DBM_KEYS_METHODDEF
_DBM_DBM_GET_METHODDEF
_DBM_DBM_SETDEFAULT_METHODDEF
{
"__enter__"
,
dbm__enter__
,
METH_NOARGS
,
NULL
},
{
"__exit__"
,
dbm__exit__
,
METH_VARARGS
,
NULL
},
{
NULL
,
NULL
}
/* sentinel */
...
...
@@ -404,7 +410,7 @@ static PyTypeObject Dbmtype = {
/*[clinic input]
dbm.open as dbmopen
_
dbm.open as dbmopen
filename: str
The filename to open.
...
...
@@ -425,7 +431,7 @@ Return a database object.
static
PyObject
*
dbmopen_impl
(
PyModuleDef
*
module
,
const
char
*
filename
,
const
char
*
flags
,
int
mode
)
/*[clinic end generated code: output=e8d4b36f25c733fd input=
6499ab0fab1333ac
]*/
/*[clinic end generated code: output=e8d4b36f25c733fd input=
226334bade5764e6
]*/
{
int
iflags
;
...
...
Modules/_gdbmmodule.c
Dosyayı görüntüle @
9260e773
This diff is collapsed.
Click to expand it.
Modules/clinic/_dbmmodule.c.h
Dosyayı görüntüle @
9260e773
...
...
@@ -2,32 +2,102 @@
preserve
[clinic start generated code]*/
PyDoc_STRVAR
(
dbm_dbm_get__doc__
,
"get($self, key, default=None, /)
\n
"
PyDoc_STRVAR
(
_dbm_dbm_close__doc__
,
"close($self, /)
\n
"
"--
\n
"
"
\n
"
"Close the database."
);
#define _DBM_DBM_CLOSE_METHODDEF \
{"close", (PyCFunction)_dbm_dbm_close, METH_NOARGS, _dbm_dbm_close__doc__},
static
PyObject
*
_dbm_dbm_close_impl
(
dbmobject
*
self
);
static
PyObject
*
_dbm_dbm_close
(
dbmobject
*
self
,
PyObject
*
Py_UNUSED
(
ignored
))
{
return
_dbm_dbm_close_impl
(
self
);
}
PyDoc_STRVAR
(
_dbm_dbm_keys__doc__
,
"keys($self, /)
\n
"
"--
\n
"
"
\n
"
"Return a list of all keys in the database."
);
#define _DBM_DBM_KEYS_METHODDEF \
{"keys", (PyCFunction)_dbm_dbm_keys, METH_NOARGS, _dbm_dbm_keys__doc__},
static
PyObject
*
_dbm_dbm_keys_impl
(
dbmobject
*
self
);
static
PyObject
*
_dbm_dbm_keys
(
dbmobject
*
self
,
PyObject
*
Py_UNUSED
(
ignored
))
{
return
_dbm_dbm_keys_impl
(
self
);
}
PyDoc_STRVAR
(
_dbm_dbm_get__doc__
,
"get($self, key, default=b
\'\'
, /)
\n
"
"--
\n
"
"
\n
"
"Return the value for key if present, otherwise default."
);
#define DBM_DBM_GET_METHODDEF \
{"get", (PyCFunction)
dbm_dbm_get, METH_VARARGS,
dbm_dbm_get__doc__},
#define
_
DBM_DBM_GET_METHODDEF \
{"get", (PyCFunction)
_dbm_dbm_get, METH_VARARGS, _
dbm_dbm_get__doc__},
static
PyObject
*
dbm_dbm_get_impl
(
dbmobject
*
dp
,
const
char
*
key
,
Py_ssize_clean_t
key_length
,
PyObject
*
default_value
);
_dbm_dbm_get_impl
(
dbmobject
*
self
,
const
char
*
key
,
Py_ssize_clean_t
key_length
,
PyObject
*
default_value
);
static
PyObject
*
dbm_dbm_get
(
dbmobject
*
dp
,
PyObject
*
args
)
_dbm_dbm_get
(
dbmobject
*
self
,
PyObject
*
args
)
{
PyObject
*
return_value
=
NULL
;
const
char
*
key
;
Py_ssize_clean_t
key_length
;
PyObject
*
default_value
=
Py_None
;
PyObject
*
default_value
=
NULL
;
if
(
!
PyArg_ParseTuple
(
args
,
"s#|O:get"
,
&
key
,
&
key_length
,
&
default_value
))
goto
exit
;
return_value
=
dbm_dbm_get_impl
(
dp
,
key
,
key_length
,
default_value
);
return_value
=
_dbm_dbm_get_impl
(
self
,
key
,
key_length
,
default_value
);
exit:
return
return_value
;
}
PyDoc_STRVAR
(
_dbm_dbm_setdefault__doc__
,
"setdefault($self, key, default=b
\'\'
, /)
\n
"
"--
\n
"
"
\n
"
"Return the value for key if present, otherwise default.
\n
"
"
\n
"
"If key is not in the database, it is inserted with default as the value."
);
#define _DBM_DBM_SETDEFAULT_METHODDEF \
{"setdefault", (PyCFunction)_dbm_dbm_setdefault, METH_VARARGS, _dbm_dbm_setdefault__doc__},
static
PyObject
*
_dbm_dbm_setdefault_impl
(
dbmobject
*
self
,
const
char
*
key
,
Py_ssize_clean_t
key_length
,
PyObject
*
default_value
);
static
PyObject
*
_dbm_dbm_setdefault
(
dbmobject
*
self
,
PyObject
*
args
)
{
PyObject
*
return_value
=
NULL
;
const
char
*
key
;
Py_ssize_clean_t
key_length
;
PyObject
*
default_value
=
NULL
;
if
(
!
PyArg_ParseTuple
(
args
,
"s#|O:setdefault"
,
&
key
,
&
key_length
,
&
default_value
))
goto
exit
;
return_value
=
_dbm_dbm_setdefault_impl
(
self
,
key
,
key_length
,
default_value
);
exit:
return
return_value
;
...
...
@@ -71,4 +141,4 @@ dbmopen(PyModuleDef *module, PyObject *args)
exit:
return
return_value
;
}
/*[clinic end generated code: output=
d6ec55c6c5d0b19d
input=a9049054013a1b77]*/
/*[clinic end generated code: output=
951fcfdb6d667a61
input=a9049054013a1b77]*/
Modules/clinic/_gdbmmodule.c.h
0 → 100644
Dosyayı görüntüle @
9260e773
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR
(
_gdbm_gdbm_get__doc__
,
"get($self, key, default=None, /)
\n
"
"--
\n
"
"
\n
"
"Get the value for key, or default if not present."
);
#define _GDBM_GDBM_GET_METHODDEF \
{"get", (PyCFunction)_gdbm_gdbm_get, METH_VARARGS, _gdbm_gdbm_get__doc__},
static
PyObject
*
_gdbm_gdbm_get_impl
(
dbmobject
*
self
,
PyObject
*
key
,
PyObject
*
default_value
);
static
PyObject
*
_gdbm_gdbm_get
(
dbmobject
*
self
,
PyObject
*
args
)
{
PyObject
*
return_value
=
NULL
;
PyObject
*
key
;
PyObject
*
default_value
=
Py_None
;
if
(
!
PyArg_UnpackTuple
(
args
,
"get"
,
1
,
2
,
&
key
,
&
default_value
))
goto
exit
;
return_value
=
_gdbm_gdbm_get_impl
(
self
,
key
,
default_value
);
exit:
return
return_value
;
}
PyDoc_STRVAR
(
_gdbm_gdbm_setdefault__doc__
,
"setdefault($self, key, default=None, /)
\n
"
"--
\n
"
"
\n
"
"Get value for key, or set it to default and return default if not present."
);
#define _GDBM_GDBM_SETDEFAULT_METHODDEF \
{"setdefault", (PyCFunction)_gdbm_gdbm_setdefault, METH_VARARGS, _gdbm_gdbm_setdefault__doc__},
static
PyObject
*
_gdbm_gdbm_setdefault_impl
(
dbmobject
*
self
,
PyObject
*
key
,
PyObject
*
default_value
);
static
PyObject
*
_gdbm_gdbm_setdefault
(
dbmobject
*
self
,
PyObject
*
args
)
{
PyObject
*
return_value
=
NULL
;
PyObject
*
key
;
PyObject
*
default_value
=
Py_None
;
if
(
!
PyArg_UnpackTuple
(
args
,
"setdefault"
,
1
,
2
,
&
key
,
&
default_value
))
goto
exit
;
return_value
=
_gdbm_gdbm_setdefault_impl
(
self
,
key
,
default_value
);
exit:
return
return_value
;
}
PyDoc_STRVAR
(
_gdbm_gdbm_close__doc__
,
"close($self, /)
\n
"
"--
\n
"
"
\n
"
"Close the database."
);
#define _GDBM_GDBM_CLOSE_METHODDEF \
{"close", (PyCFunction)_gdbm_gdbm_close, METH_NOARGS, _gdbm_gdbm_close__doc__},
static
PyObject
*
_gdbm_gdbm_close_impl
(
dbmobject
*
self
);
static
PyObject
*
_gdbm_gdbm_close
(
dbmobject
*
self
,
PyObject
*
Py_UNUSED
(
ignored
))
{
return
_gdbm_gdbm_close_impl
(
self
);
}
PyDoc_STRVAR
(
_gdbm_gdbm_keys__doc__
,
"keys($self, /)
\n
"
"--
\n
"
"
\n
"
"Get a list of all keys in the database."
);
#define _GDBM_GDBM_KEYS_METHODDEF \
{"keys", (PyCFunction)_gdbm_gdbm_keys, METH_NOARGS, _gdbm_gdbm_keys__doc__},
static
PyObject
*
_gdbm_gdbm_keys_impl
(
dbmobject
*
self
);
static
PyObject
*
_gdbm_gdbm_keys
(
dbmobject
*
self
,
PyObject
*
Py_UNUSED
(
ignored
))
{
return
_gdbm_gdbm_keys_impl
(
self
);
}
PyDoc_STRVAR
(
_gdbm_gdbm_firstkey__doc__
,
"firstkey($self, /)
\n
"
"--
\n
"
"
\n
"
"Return the starting key for the traversal.
\n
"
"
\n
"
"It
\'
s possible to loop over every key in the database using this method
\n
"
"and the nextkey() method. The traversal is ordered by GDBM
\'
s internal
\n
"
"hash values, and won
\'
t be sorted by the key values."
);
#define _GDBM_GDBM_FIRSTKEY_METHODDEF \
{"firstkey", (PyCFunction)_gdbm_gdbm_firstkey, METH_NOARGS, _gdbm_gdbm_firstkey__doc__},
static
PyObject
*
_gdbm_gdbm_firstkey_impl
(
dbmobject
*
self
);
static
PyObject
*
_gdbm_gdbm_firstkey
(
dbmobject
*
self
,
PyObject
*
Py_UNUSED
(
ignored
))
{
return
_gdbm_gdbm_firstkey_impl
(
self
);
}
PyDoc_STRVAR
(
_gdbm_gdbm_nextkey__doc__
,
"nextkey($self, key, /)
\n
"
"--
\n
"
"
\n
"
"Returns the key that follows key in the traversal.
\n
"
"
\n
"
"The following code prints every key in the database db, without having
\n
"
"to create a list in memory that contains them all:
\n
"
"
\n
"
" k = db.firstkey()
\n
"
" while k != None:
\n
"
" print(k)
\n
"
" k = db.nextkey(k)"
);
#define _GDBM_GDBM_NEXTKEY_METHODDEF \
{"nextkey", (PyCFunction)_gdbm_gdbm_nextkey, METH_O, _gdbm_gdbm_nextkey__doc__},
static
PyObject
*
_gdbm_gdbm_nextkey_impl
(
dbmobject
*
self
,
const
char
*
key
,
Py_ssize_clean_t
key_length
);
static
PyObject
*
_gdbm_gdbm_nextkey
(
dbmobject
*
self
,
PyObject
*
arg
)
{
PyObject
*
return_value
=
NULL
;
const
char
*
key
;
Py_ssize_clean_t
key_length
;
if
(
!
PyArg_Parse
(
arg
,
"s#:nextkey"
,
&
key
,
&
key_length
))
goto
exit
;
return_value
=
_gdbm_gdbm_nextkey_impl
(
self
,
key
,
key_length
);
exit:
return
return_value
;
}
PyDoc_STRVAR
(
_gdbm_gdbm_reorganize__doc__
,
"reorganize($self, /)
\n
"
"--
\n
"
"
\n
"
"Reorganize the database.
\n
"
"
\n
"
"If you have carried out a lot of deletions and would like to shrink
\n
"
"the space used by the GDBM file, this routine will reorganize the
\n
"
"database. GDBM will not shorten the length of a database file except
\n
"
"by using this reorganization; otherwise, deleted file space will be
\n
"
"kept and reused as new (key,value) pairs are added."
);
#define _GDBM_GDBM_REORGANIZE_METHODDEF \
{"reorganize", (PyCFunction)_gdbm_gdbm_reorganize, METH_NOARGS, _gdbm_gdbm_reorganize__doc__},
static
PyObject
*
_gdbm_gdbm_reorganize_impl
(
dbmobject
*
self
);
static
PyObject
*
_gdbm_gdbm_reorganize
(
dbmobject
*
self
,
PyObject
*
Py_UNUSED
(
ignored
))
{
return
_gdbm_gdbm_reorganize_impl
(
self
);
}
PyDoc_STRVAR
(
_gdbm_gdbm_sync__doc__
,
"sync($self, /)
\n
"
"--
\n
"
"
\n
"
"Flush the database to the disk file.
\n
"
"
\n
"
"When the database has been opened in fast mode, this method forces
\n
"
"any unwritten data to be written to the disk."
);
#define _GDBM_GDBM_SYNC_METHODDEF \
{"sync", (PyCFunction)_gdbm_gdbm_sync, METH_NOARGS, _gdbm_gdbm_sync__doc__},
static
PyObject
*
_gdbm_gdbm_sync_impl
(
dbmobject
*
self
);
static
PyObject
*
_gdbm_gdbm_sync
(
dbmobject
*
self
,
PyObject
*
Py_UNUSED
(
ignored
))
{
return
_gdbm_gdbm_sync_impl
(
self
);
}
PyDoc_STRVAR
(
dbmopen__doc__
,
"open($module, filename, flags=
\'
r
\'
, mode=0o666, /)
\n
"
"--
\n
"
"
\n
"
"Open a dbm database and return a dbm object.
\n
"
"
\n
"
"The filename argument is the name of the database file.
\n
"
"
\n
"
"The optional flags argument can be
\'
r
\'
(to open an existing database
\n
"
"for reading only -- default),
\'
w
\'
(to open an existing database for
\n
"
"reading and writing),
\'
c
\'
(which creates the database if it doesn
\'
t
\n
"
"exist), or
\'
n
\'
(which always creates a new empty database).
\n
"
"
\n
"
"Some versions of gdbm support additional flags which must be
\n
"
"appended to one of the flags described above. The module constant
\n
"
"
\'
open_flags
\'
is a string of valid additional flags. The
\'
f
\'
flag
\n
"
"opens the database in fast mode; altered data will not automatically
\n
"
"be written to the disk after every change. This results in faster
\n
"
"writes to the database, but may result in an inconsistent database
\n
"
"if the program crashes while the database is still open. Use the
\n
"
"sync() method to force any unwritten data to be written to the disk.
\n
"
"The
\'
s
\'
flag causes all database operations to be synchronized to
\n
"
"disk. The
\'
u
\'
flag disables locking of the database file.
\n
"
"
\n
"
"The optional mode argument is the Unix mode of the file, used only
\n
"
"when the database has to be created. It defaults to octal 0o666."
);
#define DBMOPEN_METHODDEF \
{"open", (PyCFunction)dbmopen, METH_VARARGS, dbmopen__doc__},
static
PyObject
*
dbmopen_impl
(
PyModuleDef
*
module
,
const
char
*
name
,
const
char
*
flags
,
int
mode
);
static
PyObject
*
dbmopen
(
PyModuleDef
*
module
,
PyObject
*
args
)
{
PyObject
*
return_value
=
NULL
;
const
char
*
name
;
const
char
*
flags
=
"r"
;
int
mode
=
438
;
if
(
!
PyArg_ParseTuple
(
args
,
"s|si:open"
,
&
name
,
&
flags
,
&
mode
))
goto
exit
;
return_value
=
dbmopen_impl
(
module
,
name
,
flags
,
mode
);
exit:
return
return_value
;
}
/*[clinic end generated code: output=b41c68a5f30699cb input=a9049054013a1b77]*/
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