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
307d4cb9
Unverified
Kaydet (Commit)
307d4cb9
authored
Haz 07, 2019
tarafından
Stefan Krah
Kaydeden (comit)
GitHub
Haz 07, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use assertEqual(). (#13883)
üst
7f8a38a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
test_arrays.py
Lib/ctypes/test/test_arrays.py
+2
-2
No files found.
Lib/ctypes/test/test_arrays.py
Dosyayı görüntüle @
307d4cb9
...
...
@@ -213,7 +213,7 @@ class ArrayTestCase(unittest.TestCase):
_fields_
=
[]
obj
=
(
EmptyStruct
*
2
)()
# bpo37188: Floating point exception
assert
sizeof
(
obj
)
==
0
self
.
assertEqual
(
sizeof
(
obj
),
0
)
def
test_empty_element_array
(
self
):
class
EmptyArray
(
Array
):
...
...
@@ -221,7 +221,7 @@ class ArrayTestCase(unittest.TestCase):
_length_
=
0
obj
=
(
EmptyArray
*
2
)()
# bpo37188: Floating point exception
assert
sizeof
(
obj
)
==
0
self
.
assertEqual
(
sizeof
(
obj
),
0
)
def
test_bpo36504_signed_int_overflow
(
self
):
# The overflow check in PyCArrayType_new() could cause signed integer
...
...
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