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
f9756c23
Kaydet (Commit)
f9756c23
authored
May 09, 2011
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some more tests were incorrectly marked as C specific.
üst
2f48d892
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
12 deletions
+10
-12
test_heapq.py
Lib/test/test_heapq.py
+10
-12
No files found.
Lib/test/test_heapq.py
Dosyayı görüntüle @
f9756c23
...
...
@@ -191,17 +191,8 @@ class TestHeap(TestCase):
self
.
assertEqual
(
list
(
self
.
module
.
nlargest
(
n
,
data
,
key
=
f
)),
sorted
(
data
,
key
=
f
,
reverse
=
True
)[:
n
])
class
TestHeapPython
(
TestHeap
):
module
=
py_heapq
@skipUnless
(
c_heapq
,
'requires _heapq'
)
class
TestHeapC
(
TestHeap
):
module
=
c_heapq
def
test_comparison_operator
(
self
):
# Issue 3
50
1: Make sure heapq works with both __lt__
# Issue 3
05
1: Make sure heapq works with both __lt__
# For python 3.0, __le__ alone is not enough
def
hsort
(
data
,
comp
):
data
=
[
comp
(
x
)
for
x
in
data
]
...
...
@@ -223,6 +214,15 @@ class TestHeapC(TestHeap):
self
.
assertRaises
(
TypeError
,
data
,
LE
)
class
TestHeapPython
(
TestHeap
):
module
=
py_heapq
@skipUnless
(
c_heapq
,
'requires _heapq'
)
class
TestHeapC
(
TestHeap
):
module
=
c_heapq
#==============================================================================
class
LenOnly
:
...
...
@@ -377,8 +377,6 @@ class TestErrorHandling(TestCase):
def
test_main
(
verbose
=
None
):
from
types
import
BuiltinFunctionType
test_classes
=
[
TestModules
,
TestHeapPython
,
TestHeapC
,
TestErrorHandling
]
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