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
1042a4d7
Kaydet (Commit)
1042a4d7
authored
Agu 24, 2007
tarafından
Gregory P. Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix bug 1725856.
üst
daa6f254
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
__init__.py
Lib/bsddb/__init__.py
+4
-0
test_bsddb.py
Lib/test/test_bsddb.py
+16
-0
No files found.
Lib/bsddb/__init__.py
Dosyayı görüntüle @
1042a4d7
...
...
@@ -274,12 +274,16 @@ class _DBWithCursor(_iter_mixin):
def
first
(
self
):
self
.
_checkOpen
()
# fix 1725856: don't needlessly try to restore our cursor position
self
.
saved_dbc_key
=
None
self
.
_checkCursor
()
rv
=
_DeadlockWrap
(
self
.
dbc
.
first
)
return
rv
def
last
(
self
):
self
.
_checkOpen
()
# fix 1725856: don't needlessly try to restore our cursor position
self
.
saved_dbc_key
=
None
self
.
_checkCursor
()
rv
=
_DeadlockWrap
(
self
.
dbc
.
last
)
return
rv
...
...
Lib/test/test_bsddb.py
Dosyayı görüntüle @
1042a4d7
...
...
@@ -127,6 +127,22 @@ class TestBSDDB(unittest.TestCase):
items
.
append
(
self
.
f
.
previous
())
self
.
assertSetEquals
(
items
,
self
.
d
.
items
())
def
test_first_while_deleting
(
self
):
# Test for bug 1725856
self
.
assert_
(
len
(
self
.
d
)
>=
2
,
"test requires >=2 items"
)
for
_
in
self
.
d
:
key
=
self
.
f
.
first
()[
0
]
del
self
.
f
[
key
]
self
.
assertEqual
([],
self
.
f
.
items
(),
"expected empty db after test"
)
def
test_last_while_deleting
(
self
):
# Test for bug 1725856's evil twin
self
.
assert_
(
len
(
self
.
d
)
>=
2
,
"test requires >=2 items"
)
for
_
in
self
.
d
:
key
=
self
.
f
.
last
()[
0
]
del
self
.
f
[
key
]
self
.
assertEqual
([],
self
.
f
.
items
(),
"expected empty db after test"
)
def
test_set_location
(
self
):
self
.
assertEqual
(
self
.
f
.
set_location
(
'e'
),
(
'e'
,
self
.
d
[
'e'
]))
...
...
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