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
f3776a17
Kaydet (Commit)
f3776a17
authored
Eki 08, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#3935: properly support list subclasses in the C impl. of bisect.
Patch reviewed by Raymond.
üst
06a13869
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
test_bisect.py
Lib/test/test_bisect.py
+11
-0
NEWS
Misc/NEWS
+2
-0
_bisectmodule.c
Modules/_bisectmodule.c
+2
-2
No files found.
Lib/test/test_bisect.py
Dosyayı görüntüle @
f3776a17
...
...
@@ -196,6 +196,17 @@ class TestInsort(unittest.TestCase):
def
test_backcompatibility
(
self
):
self
.
assertEqual
(
self
.
module
.
insort
,
self
.
module
.
insort_right
)
def
test_listDerived
(
self
):
class
List
(
list
):
data
=
[]
def
insert
(
self
,
index
,
item
):
self
.
data
.
insert
(
index
,
item
)
lst
=
List
()
self
.
module
.
insort_left
(
lst
,
10
)
self
.
module
.
insort_right
(
lst
,
5
)
self
.
assertEqual
([
5
,
10
],
lst
.
data
)
class
TestInsortPython
(
TestInsort
):
module
=
py_bisect
...
...
Misc/NEWS
Dosyayı görüntüle @
f3776a17
...
...
@@ -20,6 +20,8 @@ Core and Builtins
Library
-------
- Issue #3935: Properly support list subclasses in bisect's C implementation.
- Issue #4014: Don't claim that Python has an Alpha release status, in addition
to claiming it is Mature.
...
...
Modules/_bisectmodule.c
Dosyayı görüntüle @
f3776a17
...
...
@@ -82,7 +82,7 @@ insort_right(PyObject *self, PyObject *args, PyObject *kw)
index
=
internal_bisect_right
(
list
,
item
,
lo
,
hi
);
if
(
index
<
0
)
return
NULL
;
if
(
PyList_Check
(
list
))
{
if
(
PyList_Check
Exact
(
list
))
{
if
(
PyList_Insert
(
list
,
index
,
item
)
<
0
)
return
NULL
;
}
else
{
...
...
@@ -183,7 +183,7 @@ insort_left(PyObject *self, PyObject *args, PyObject *kw)
index
=
internal_bisect_left
(
list
,
item
,
lo
,
hi
);
if
(
index
<
0
)
return
NULL
;
if
(
PyList_Check
(
list
))
{
if
(
PyList_Check
Exact
(
list
))
{
if
(
PyList_Insert
(
list
,
index
,
item
)
<
0
)
return
NULL
;
}
else
{
...
...
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