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
e29a1030
Kaydet (Commit)
e29a1030
authored
Haz 11, 2008
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add test for heapq using both __lt__ and __le__.
üst
a809c98c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
test_heapq.py
Lib/test/test_heapq.py
+21
-0
No files found.
Lib/test/test_heapq.py
Dosyayı görüntüle @
e29a1030
...
...
@@ -196,6 +196,27 @@ class TestHeapPython(TestHeap):
class
TestHeapC
(
TestHeap
):
module
=
c_heapq
def
test_comparison_operator
(
self
):
# Issue 3501: Make sure heapq works with both __lt__ and __le__
def
hsort
(
data
,
comp
):
data
=
map
(
comp
,
data
)
self
.
module
.
heapify
(
data
)
return
[
self
.
module
.
heappop
(
data
)
.
x
for
i
in
range
(
len
(
data
))]
class
LT
:
def
__init__
(
self
,
x
):
self
.
x
=
x
def
__lt__
(
self
,
other
):
return
self
.
x
>
other
.
x
class
LE
:
def
__init__
(
self
,
x
):
self
.
x
=
x
def
__lt__
(
self
,
other
):
return
self
.
x
>=
other
.
x
data
=
[
random
.
random
()
for
i
in
range
(
100
)]
target
=
sorted
(
data
,
reverse
=
True
)
self
.
assertEqual
(
hsort
(
data
,
LT
),
target
)
self
.
assertEqual
(
hsort
(
data
,
LE
),
target
)
#==============================================================================
...
...
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