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
f1ca7f56
Kaydet (Commit)
f1ca7f56
authored
Ara 28, 2003
tarafından
Andrew MacIntyre
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
complete backout of listobject.c v2.171
üst
30973414
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
13 deletions
+0
-13
ACKS
Misc/ACKS
+0
-1
NEWS
Misc/NEWS
+0
-8
listobject.c
Objects/listobject.c
+0
-4
No files found.
Misc/ACKS
Dosyayı görüntüle @
f1ca7f56
...
...
@@ -62,7 +62,6 @@ Finn Bock
Paul Boddie
Matthew Boedicker
David Bolen
Duncan Booth
Jurjen Bos
Peter Bosch
Eric Bouck
...
...
Misc/NEWS
Dosyayı görüntüle @
f1ca7f56
...
...
@@ -118,14 +118,6 @@ Core and builtins
same as split() except that it scans the string from the end
working towards the beginning. See SF feature request 801847.
- in a thread on comp.lang.python, several people noted that list()
was much slower than in 2.1 and earlier versions of Python, when used
to create new lists from existing lists. Duncan Booth did some
research that uncovered an optimisation that, for lists below
about 100 elements, was actually slower than the normal case. The
special case criteria have been tightened to rectify the performance
regression.
Extension modules
-----------------
...
...
Objects/listobject.c
Dosyayı görüntüle @
f1ca7f56
...
...
@@ -2242,10 +2242,6 @@ list_fill(PyListObject *result, PyObject *v)
int
n
;
/* guess for result list size */
int
i
;
/* if source is destination, we're done. */
if
(
v
==
(
PyObject
*
)
result
)
return
0
;
n
=
result
->
ob_size
;
/* Special-case list(a_list), for speed. */
...
...
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