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
39dce30b
Kaydet (Commit)
39dce30b
authored
Agu 29, 2007
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Get test_bsddb3 passing
üst
e14841c1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
test_dbtables.py
Lib/bsddb/test/test_dbtables.py
+1
-1
test_queue.py
Lib/bsddb/test/test_queue.py
+2
-2
test_recno.py
Lib/bsddb/test/test_recno.py
+3
-3
No files found.
Lib/bsddb/test/test_dbtables.py
Dosyayı görüntüle @
39dce30b
...
...
@@ -326,7 +326,7 @@ class TableDBTestCase(unittest.TestCase):
return
type
def
increment_access
(
count
):
return
bytes
(
str
(
int
(
count
)
+
1
)
)
return
str
(
int
(
count
)
+
1
)
.
encode
(
'ascii'
)
def
remove_value
(
value
):
return
None
...
...
Lib/bsddb/test/test_queue.py
Dosyayı görüntüle @
39dce30b
...
...
@@ -47,7 +47,7 @@ class SimpleQueueTestCase(unittest.TestCase):
pprint
(
d
.
stat
())
for
x
in
letters
:
d
.
append
(
bytes
(
x
)
*
40
)
d
.
append
(
x
.
encode
(
'ascii'
)
*
40
)
assert
len
(
d
)
==
52
...
...
@@ -119,7 +119,7 @@ class SimpleQueueTestCase(unittest.TestCase):
pprint
(
d
.
stat
())
for
x
in
letters
:
d
.
append
(
bytes
(
x
)
*
40
)
d
.
append
(
x
.
encode
(
'ascii'
)
*
40
)
assert
len
(
d
)
==
52
...
...
Lib/bsddb/test/test_recno.py
Dosyayı görüntüle @
39dce30b
...
...
@@ -44,7 +44,7 @@ class SimpleRecnoTestCase(unittest.TestCase):
d
.
open
(
self
.
filename
,
db
.
DB_RECNO
,
db
.
DB_CREATE
)
for
x
in
letters
:
recno
=
d
.
append
(
bytes
(
x
)
*
60
)
recno
=
d
.
append
(
x
.
encode
(
'ascii'
)
*
60
)
assert
type
(
recno
)
==
type
(
0
)
assert
recno
>=
1
if
verbose
:
...
...
@@ -219,7 +219,7 @@ class SimpleRecnoTestCase(unittest.TestCase):
data
=
"The quick brown fox jumped over the lazy dog"
.
split
()
for
datum
in
data
:
d
.
append
(
bytes
(
datum
))
d
.
append
(
datum
.
encode
(
'ascii'
))
d
.
sync
()
d
.
close
()
...
...
@@ -261,7 +261,7 @@ class SimpleRecnoTestCase(unittest.TestCase):
d
.
open
(
self
.
filename
,
db
.
DB_RECNO
,
db
.
DB_CREATE
)
for
x
in
letters
:
d
.
append
(
bytes
(
x
)
*
35
)
# These will be padded
d
.
append
(
x
.
encode
(
'ascii'
)
*
35
)
# These will be padded
d
.
append
(
b
'.'
*
40
)
# this one will be exact
...
...
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