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
1b5f9c96
Kaydet (Commit)
1b5f9c96
authored
Agu 30, 2018
tarafından
Naris R
Kaydeden (comit)
Raymond Hettinger
Agu 30, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-34427: Fix infinite loop when calling MutableSequence.extend() on self (GH-8813)
üst
e6dac007
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
0 deletions
+15
-0
_collections_abc.py
Lib/_collections_abc.py
+2
-0
test_collections.py
Lib/test/test_collections.py
+12
-0
2018-08-20-13-53-10.bpo-34427.tMRQjl.rst
...S.d/next/Library/2018-08-20-13-53-10.bpo-34427.tMRQjl.rst
+1
-0
No files found.
Lib/_collections_abc.py
Dosyayı görüntüle @
1b5f9c96
...
...
@@ -986,6 +986,8 @@ class MutableSequence(Sequence):
def
extend
(
self
,
values
):
'S.extend(iterable) -- extend sequence by appending elements from the iterable'
if
values
is
self
:
values
=
list
(
values
)
for
v
in
values
:
self
.
append
(
v
)
...
...
Lib/test/test_collections.py
Dosyayı görüntüle @
1b5f9c96
...
...
@@ -1721,6 +1721,18 @@ class TestCollectionABCs(ABCTestCase):
mss
.
clear
()
self
.
assertEqual
(
len
(
mss
),
0
)
# issue 34427
# extending self should not cause infinite loop
items
=
'ABCD'
mss2
=
MutableSequenceSubclass
()
mss2
.
extend
(
items
+
items
)
mss
.
clear
()
mss
.
extend
(
items
)
mss
.
extend
(
mss
)
self
.
assertEqual
(
len
(
mss
),
len
(
mss2
))
self
.
assertEqual
(
list
(
mss
),
list
(
mss2
))
################################################################################
### Counter
################################################################################
...
...
Misc/NEWS.d/next/Library/2018-08-20-13-53-10.bpo-34427.tMRQjl.rst
0 → 100644
Dosyayı görüntüle @
1b5f9c96
Fix infinite loop in ``a.extend(a)`` for ``MutableSequence`` subclasses.
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