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
5d743fd1
Kaydet (Commit)
5d743fd1
authored
Eki 13, 2007
tarafından
Gregory P. Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix an uncollectable reference leak in bsddb.db.DBShelf.append
üst
5fbf6637
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
2 deletions
+19
-2
dbshelve.py
Lib/bsddb/dbshelve.py
+19
-2
No files found.
Lib/bsddb/dbshelve.py
Dosyayı görüntüle @
5d743fd1
...
@@ -93,6 +93,7 @@ class DBShelf(DictMixin):
...
@@ -93,6 +93,7 @@ class DBShelf(DictMixin):
"""
"""
def
__init__
(
self
,
dbenv
=
None
):
def
__init__
(
self
,
dbenv
=
None
):
self
.
db
=
db
.
DB
(
dbenv
)
self
.
db
=
db
.
DB
(
dbenv
)
self
.
_closed
=
True
if
HIGHEST_PROTOCOL
:
if
HIGHEST_PROTOCOL
:
self
.
protocol
=
HIGHEST_PROTOCOL
self
.
protocol
=
HIGHEST_PROTOCOL
else
:
else
:
...
@@ -138,6 +139,23 @@ class DBShelf(DictMixin):
...
@@ -138,6 +139,23 @@ class DBShelf(DictMixin):
return
self
.
db
.
keys
()
return
self
.
db
.
keys
()
def
open
(
self
,
*
args
,
**
kwargs
):
self
.
db
.
open
(
*
args
,
**
kwargs
)
self
.
_closed
=
False
def
close
(
self
,
*
args
,
**
kwargs
):
self
.
db
.
close
(
*
args
,
**
kwargs
)
self
.
_closed
=
True
def
__repr__
(
self
):
if
self
.
_closed
:
return
'<DBShelf @ 0x
%
x - closed>'
%
(
id
(
self
))
else
:
return
repr
(
dict
(
self
.
iteritems
()))
def
items
(
self
,
txn
=
None
):
def
items
(
self
,
txn
=
None
):
if
txn
!=
None
:
if
txn
!=
None
:
items
=
self
.
db
.
items
(
txn
)
items
=
self
.
db
.
items
(
txn
)
...
@@ -166,8 +184,7 @@ class DBShelf(DictMixin):
...
@@ -166,8 +184,7 @@ class DBShelf(DictMixin):
def
append
(
self
,
value
,
txn
=
None
):
def
append
(
self
,
value
,
txn
=
None
):
if
self
.
get_type
()
==
db
.
DB_RECNO
:
if
self
.
get_type
()
==
db
.
DB_RECNO
:
self
.
append
=
self
.
__append
return
self
.
__append
(
value
,
txn
=
txn
)
return
self
.
append
(
value
,
txn
=
txn
)
raise
DBShelveError
,
"append() only supported when dbshelve opened with filetype=dbshelve.db.DB_RECNO"
raise
DBShelveError
,
"append() only supported when dbshelve opened with filetype=dbshelve.db.DB_RECNO"
...
...
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