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
ec2fe78d
Kaydet (Commit)
ec2fe78d
authored
Haz 06, 2008
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 3501: Make heapq support both __le__ and __lt__.
üst
0d236eb0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
11 deletions
+28
-11
_heapqmodule.c
Modules/_heapqmodule.c
+28
-11
No files found.
Modules/_heapqmodule.c
Dosyayı görüntüle @
ec2fe78d
...
...
@@ -8,6 +8,25 @@ annotated by Fran
#include "Python.h"
/* Older implementations of heapq used Py_LE for comparisons. Now, it uses
Py_LT so it will match min(), sorted(), and bisect(). Unfortunately, some
client code (Twisted for example) relied on Py_LE, so this little function
restores compatability by trying both.
*/
static
int
cmp_lt
(
PyObject
*
x
,
PyObject
*
y
)
{
int
cmp
;
cmp
=
PyObject_RichCompareBool
(
x
,
y
,
Py_LT
);
if
(
cmp
==
-
1
&&
PyErr_ExceptionMatches
(
PyExc_AttributeError
))
{
PyErr_Clear
();
cmp
=
PyObject_RichCompareBool
(
y
,
x
,
Py_LE
);
if
(
cmp
!=
-
1
)
cmp
=
1
-
cmp
;
}
return
cmp
;
}
static
int
_siftdown
(
PyListObject
*
heap
,
Py_ssize_t
startpos
,
Py_ssize_t
pos
)
{
...
...
@@ -28,7 +47,7 @@ _siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos)
while
(
pos
>
startpos
){
parentpos
=
(
pos
-
1
)
>>
1
;
parent
=
PyList_GET_ITEM
(
heap
,
parentpos
);
cmp
=
PyObject_RichCompareBool
(
newitem
,
parent
,
Py_LT
);
cmp
=
cmp_lt
(
newitem
,
parent
);
if
(
cmp
==
-
1
)
{
Py_DECREF
(
newitem
);
return
-
1
;
...
...
@@ -68,10 +87,9 @@ _siftup(PyListObject *heap, Py_ssize_t pos)
/* Set childpos to index of smaller child. */
rightpos
=
childpos
+
1
;
if
(
rightpos
<
endpos
)
{
cmp
=
PyObject_RichCompareBool
(
cmp
=
cmp_lt
(
PyList_GET_ITEM
(
heap
,
childpos
),
PyList_GET_ITEM
(
heap
,
rightpos
),
Py_LT
);
PyList_GET_ITEM
(
heap
,
rightpos
));
if
(
cmp
==
-
1
)
{
Py_DECREF
(
newitem
);
return
-
1
;
...
...
@@ -214,7 +232,7 @@ heappushpop(PyObject *self, PyObject *args)
return
item
;
}
cmp
=
PyObject_RichCompareBool
(
PyList_GET_ITEM
(
heap
,
0
),
item
,
Py_LT
);
cmp
=
cmp_lt
(
PyList_GET_ITEM
(
heap
,
0
),
item
);
if
(
cmp
==
-
1
)
return
NULL
;
if
(
cmp
==
0
)
{
...
...
@@ -313,7 +331,7 @@ nlargest(PyObject *self, PyObject *args)
else
goto
sortit
;
}
cmp
=
PyObject_RichCompareBool
(
sol
,
elem
,
Py_LT
);
cmp
=
cmp_lt
(
sol
,
elem
);
if
(
cmp
==
-
1
)
{
Py_DECREF
(
elem
);
goto
fail
;
...
...
@@ -368,7 +386,7 @@ _siftdownmax(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos)
while
(
pos
>
startpos
){
parentpos
=
(
pos
-
1
)
>>
1
;
parent
=
PyList_GET_ITEM
(
heap
,
parentpos
);
cmp
=
PyObject_RichCompareBool
(
parent
,
newitem
,
Py_LT
);
cmp
=
cmp_lt
(
parent
,
newitem
);
if
(
cmp
==
-
1
)
{
Py_DECREF
(
newitem
);
return
-
1
;
...
...
@@ -408,10 +426,9 @@ _siftupmax(PyListObject *heap, Py_ssize_t pos)
/* Set childpos to index of smaller child. */
rightpos
=
childpos
+
1
;
if
(
rightpos
<
endpos
)
{
cmp
=
PyObject_RichCompareBool
(
cmp
=
cmp_lt
(
PyList_GET_ITEM
(
heap
,
rightpos
),
PyList_GET_ITEM
(
heap
,
childpos
),
Py_LT
);
PyList_GET_ITEM
(
heap
,
childpos
));
if
(
cmp
==
-
1
)
{
Py_DECREF
(
newitem
);
return
-
1
;
...
...
@@ -484,7 +501,7 @@ nsmallest(PyObject *self, PyObject *args)
else
goto
sortit
;
}
cmp
=
PyObject_RichCompareBool
(
elem
,
los
,
Py_LT
);
cmp
=
cmp_lt
(
elem
,
los
);
if
(
cmp
==
-
1
)
{
Py_DECREF
(
elem
);
goto
fail
;
...
...
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