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
e676c5ef
Kaydet (Commit)
e676c5ef
authored
Tem 21, 2003
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
test01_join(): Fix a test failure when run with "python -O". The
setting of sCursor happened in an assert.
üst
f239c6d5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
test_join.py
Lib/bsddb/test/test_join.py
+4
-1
No files found.
Lib/bsddb/test/test_join.py
Dosyayı görüntüle @
e676c5ef
...
@@ -85,7 +85,10 @@ class JoinTestCase(unittest.TestCase):
...
@@ -85,7 +85,10 @@ class JoinTestCase(unittest.TestCase):
try
:
try
:
# lets look up all of the red Products
# lets look up all of the red Products
sCursor
=
secDB
.
cursor
()
sCursor
=
secDB
.
cursor
()
assert
sCursor
.
set
(
'red'
)
# Don't do the .set() in an assert, or you can get a bogus failure
# when running python -O
tmp
=
sCursor
.
set
(
'red'
)
assert
tmp
# FIXME: jCursor doesn't properly hold a reference to its
# FIXME: jCursor doesn't properly hold a reference to its
# cursors, if they are closed before jcursor is used it
# cursors, if they are closed before jcursor is used it
...
...
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