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
a9f18dc0
Kaydet (Commit)
a9f18dc0
authored
Ock 16, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Test optional slice arguments.
Add backwards compatibility test.
üst
4422375c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
+14
-4
test_bisect.py
Lib/test/test_bisect.py
+14
-4
No files found.
Lib/test/test_bisect.py
Dosyayı görüntüle @
a9f18dc0
import
unittest
from
test
import
test_support
from
bisect
import
bisect_right
,
bisect_left
,
insort_left
,
insort_right
# XXX optional slice arguments need tests.
from
bisect
import
bisect_right
,
bisect_left
,
insort_left
,
insort_right
,
insort
,
bisect
class
TestBisect
(
unittest
.
TestCase
):
...
...
@@ -110,6 +107,16 @@ class TestBisect(unittest.TestCase):
if
ip
>
0
:
self
.
failUnless
(
data
[
ip
-
1
]
<=
elem
)
def
test_optionalSlicing
(
self
):
for
func
,
list
,
elt
,
expected
in
self
.
precomputedCases
:
lo
=
min
(
len
(
list
),
1
)
self
.
failUnless
(
func
(
list
,
elt
,
lo
=
lo
)
>=
lo
)
hi
=
min
(
len
(
list
),
2
)
self
.
failUnless
(
func
(
list
,
elt
,
hi
=
hi
)
<=
hi
)
def
test_backcompatibility
(
self
):
self
.
assertEqual
(
bisect
,
bisect_right
)
#==============================================================================
class
TestInsort
(
unittest
.
TestCase
):
...
...
@@ -131,6 +138,9 @@ class TestInsort(unittest.TestCase):
sorted
.
sort
()
self
.
assertEqual
(
sorted
,
insorted
)
def
test_backcompatibility
(
self
):
self
.
assertEqual
(
insort
,
insort_right
)
#==============================================================================
libreftest
=
"""
...
...
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