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
30a634e0
Kaydet (Commit)
30a634e0
authored
Şub 05, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF patch #674396: Apply UserDict.DictMixin to expand dbshelve and dbojb
to have a full dictionary interface.
üst
35ad641b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
dbobj.py
Lib/bsddb/dbobj.py
+2
-1
dbshelve.py
Lib/bsddb/dbshelve.py
+2
-1
No files found.
Lib/bsddb/dbobj.py
Dosyayı görüntüle @
30a634e0
...
...
@@ -16,6 +16,7 @@
#
import
db
from
UserDict
import
DictMixin
class
DBEnv
:
def
__init__
(
self
,
*
args
,
**
kwargs
):
...
...
@@ -85,7 +86,7 @@ class DBEnv:
return
apply
(
self
.
_cobj
.
set_encrypt
,
args
,
kwargs
)
class
DB
:
class
DB
(
DictMixin
)
:
def
__init__
(
self
,
dbenv
,
*
args
,
**
kwargs
):
# give it the proper DBEnv C object that its expecting
self
.
_cobj
=
apply
(
db
.
DB
,
(
dbenv
.
_cobj
,)
+
args
,
kwargs
)
...
...
Lib/bsddb/dbshelve.py
Dosyayı görüntüle @
30a634e0
...
...
@@ -30,6 +30,7 @@ storage.
#------------------------------------------------------------------------
import
cPickle
from
UserDict
import
DictMixin
try
:
# For Python 2.3
from
bsddb
import
db
...
...
@@ -75,7 +76,7 @@ def open(filename, flags=db.DB_CREATE, mode=0660, filetype=db.DB_HASH,
#---------------------------------------------------------------------------
class
DBShelf
:
class
DBShelf
(
DictMixin
)
:
"""
A shelf to hold pickled objects, built upon a bsddb DB object. It
automatically pickles/unpickles data objects going to/from the DB.
...
...
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