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
e5a9c8fa
Kaydet (Commit)
e5a9c8fa
authored
Mar 25, 1997
tarafından
Roger E. Masse
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
As per GvR recomendation, added support for a 'sync' attribute for the
GDBM module.
üst
1eb9a81e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
gdbmmodule.c
Modules/gdbmmodule.c
+18
-0
No files found.
Modules/gdbmmodule.c
Dosyayı görüntüle @
e5a9c8fa
...
...
@@ -32,7 +32,12 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
******************************************************************/
/*****************************************************************
Modification History:
Added support for 'gdbm_sync' method. Roger E. Masse 3/25/97
*****************************************************************/
/* DBM module using dictionary interface */
...
...
@@ -310,6 +315,18 @@ PyObject *args;
return
Py_None
;
}
static
PyObject
*
dbm_sync
(
dp
,
args
)
register
dbmobject
*
dp
;
PyObject
*
args
;
{
if
(
!
PyArg_NoArgs
(
args
))
return
NULL
;
gdbm_sync
(
dp
->
di_dbm
);
Py_INCREF
(
Py_None
);
return
Py_None
;
}
static
PyMethodDef
dbm_methods
[]
=
{
{
"close"
,
(
PyCFunction
)
dbm_close
},
{
"keys"
,
(
PyCFunction
)
dbm_keys
},
...
...
@@ -317,6 +334,7 @@ static PyMethodDef dbm_methods[] = {
{
"firstkey"
,
(
PyCFunction
)
dbm_firstkey
},
{
"nextkey"
,
(
PyCFunction
)
dbm_nextkey
},
{
"reorganize"
,
(
PyCFunction
)
dbm_reorganize
},
{
"sync"
,
(
PyCFunction
)
dbm_sync
},
{
NULL
,
NULL
}
/* sentinel */
};
...
...
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