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
6ef08a0e
Kaydet (Commit)
6ef08a0e
authored
Tem 07, 2010
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ValueError in this case is also acceptable
üst
ccabcd4b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
test_struct.py
Lib/test/test_struct.py
+8
-4
No files found.
Lib/test/test_struct.py
Dosyayı görüntüle @
6ef08a0e
...
...
@@ -438,8 +438,10 @@ class StructTest(unittest.TestCase):
# Go beyond boundaries.
small_buf
=
array
.
array
(
'b'
,
b
' '
*
10
)
self
.
assertRaises
(
struct
.
error
,
s
.
pack_into
,
small_buf
,
0
,
test_string
)
self
.
assertRaises
(
struct
.
error
,
s
.
pack_into
,
small_buf
,
2
,
test_string
)
self
.
assertRaises
((
ValueError
,
struct
.
error
),
s
.
pack_into
,
small_buf
,
0
,
test_string
)
self
.
assertRaises
((
ValueError
,
struct
.
error
),
s
.
pack_into
,
small_buf
,
2
,
test_string
)
# Test bogus offset (issue 3694)
sb
=
small_buf
...
...
@@ -463,8 +465,10 @@ class StructTest(unittest.TestCase):
# Go beyond boundaries.
small_buf
=
array
.
array
(
'b'
,
b
' '
*
10
)
self
.
assertRaises
(
struct
.
error
,
pack_into
,
small_buf
,
0
,
test_string
)
self
.
assertRaises
(
struct
.
error
,
pack_into
,
small_buf
,
2
,
test_string
)
self
.
assertRaises
((
ValueError
,
struct
.
error
),
pack_into
,
small_buf
,
0
,
test_string
)
self
.
assertRaises
((
ValueError
,
struct
.
error
),
pack_into
,
small_buf
,
2
,
test_string
)
def
test_unpack_with_buffer
(
self
):
# SF bug 1563759: struct.unpack doens't support buffer protocol objects
...
...
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