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
067bbba7
Kaydet (Commit)
067bbba7
authored
Nis 01, 2015
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Check deques against common sequence tests (except for slicing).
üst
bbe3803f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
test_deque.py
Lib/test/test_deque.py
+16
-0
No files found.
Lib/test/test_deque.py
Dosyayı görüntüle @
067bbba7
...
...
@@ -843,6 +843,21 @@ class TestSubclassWithKwargs(unittest.TestCase):
# SF bug #1486663 -- this used to erroneously raise a TypeError
SubclassWithKwargs
(
newarg
=
1
)
class
TestSequence
(
seq_tests
.
CommonTest
):
type2test
=
deque
def
test_getitem
(
self
):
# For now, bypass tests that require slicing
pass
def
test_getslice
(
self
):
# For now, bypass tests that require slicing
pass
def
test_subscript
(
self
):
# For now, bypass tests that require slicing
pass
#==============================================================================
libreftest
=
"""
...
...
@@ -957,6 +972,7 @@ def test_main(verbose=None):
TestVariousIteratorArgs
,
TestSubclass
,
TestSubclassWithKwargs
,
TestSequence
,
)
support
.
run_unittest
(
*
test_classes
)
...
...
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