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
848f2b59
Kaydet (Commit)
848f2b59
authored
Eki 07, 2015
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Backport early-out 91259f061cfb to reduce the cost of bb1a2944bcb6
üst
59dc6968
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
_collectionsmodule.c
Modules/_collectionsmodule.c
+5
-1
No files found.
Modules/_collectionsmodule.c
Dosyayı görüntüle @
848f2b59
...
...
@@ -1045,6 +1045,9 @@ deque_clear(dequeobject *deque)
Py_ssize_t
n
;
PyObject
*
item
;
if
(
Py_SIZE
(
deque
)
==
0
)
return
;
/* During the process of clearing a deque, decrefs can cause the
deque to mutate. To avoid fatal confusion, we have to make the
deque empty before clearing the blocks and never refer to
...
...
@@ -1423,7 +1426,8 @@ deque_init(dequeobject *deque, PyObject *args, PyObject *kwdargs)
}
}
deque
->
maxlen
=
maxlen
;
deque_clear
(
deque
);
if
(
Py_SIZE
(
deque
)
>
0
)
deque_clear
(
deque
);
if
(
iterable
!=
NULL
)
{
PyObject
*
rv
=
deque_extend
(
deque
,
iterable
);
if
(
rv
==
NULL
)
...
...
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