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
2cdb6435
Kaydet (Commit)
2cdb6435
authored
Ock 12, 2013
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16398: Optimize deque.rotate()
üst
92e2fc83
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
61 additions
and
14 deletions
+61
-14
NEWS
Misc/NEWS
+3
-0
_collectionsmodule.c
Modules/_collectionsmodule.c
+58
-14
No files found.
Misc/NEWS
Dosyayı görüntüle @
2cdb6435
...
...
@@ -189,6 +189,9 @@ Library
-
Issue
#
13899
:
\
A
,
\
Z
,
and
\
B
now
correctly
match
the
A
,
Z
,
and
B
literals
when
used
inside
character
classes
(
e
.
g
.
'[\A]'
).
Patch
by
Matthew
Barnett
.
-
Issue
#
16398
:
Optimize
deque
.
rotate
()
so
that
it
only
moves
pointers
and
doesn
't touch the underlying data with increfs and decrefs.
- Issue #15109: Fix regression in sqlite3'
s
iterdump
method
where
it
would
die
with
an
encoding
error
if
the
database
contained
string
values
containing
non
-
ASCII
.
(
Regression
was
introduced
by
fix
for
9750
).
...
...
Modules/_collectionsmodule.c
Dosyayı görüntüle @
2cdb6435
...
...
@@ -414,9 +414,10 @@ static int
_deque_rotate
(
dequeobject
*
deque
,
Py_ssize_t
n
)
{
Py_ssize_t
i
,
len
=
deque
->
len
,
halflen
=
(
len
+
1
)
>>
1
;
PyObject
*
item
,
*
rv
;
PyObject
*
item
;
block
*
prevblock
,
*
leftblock
,
*
rightblock
;
if
(
len
==
0
)
if
(
len
<=
1
)
return
0
;
if
(
n
>
halflen
||
n
<
-
halflen
)
{
n
%=
len
;
...
...
@@ -426,23 +427,66 @@ _deque_rotate(dequeobject *deque, Py_ssize_t n)
n
+=
len
;
}
assert
(
deque
->
len
>
1
);
deque
->
state
++
;
leftblock
=
deque
->
leftblock
;
rightblock
=
deque
->
rightblock
;
for
(
i
=
0
;
i
<
n
;
i
++
)
{
item
=
deque_pop
(
deque
,
NULL
)
;
item
=
rightblock
->
data
[
deque
->
rightindex
]
;
assert
(
item
!=
NULL
);
rv
=
deque_appendleft
(
deque
,
item
);
Py_DECREF
(
item
);
if
(
rv
==
NULL
)
return
-
1
;
Py_DECREF
(
rv
);
deque
->
rightindex
--
;
if
(
deque
->
rightindex
==
-
1
)
{
assert
(
rightblock
!=
NULL
);
prevblock
=
rightblock
->
leftlink
;
assert
(
leftblock
!=
rightblock
);
freeblock
(
rightblock
);
prevblock
->
rightlink
=
NULL
;
deque
->
rightblock
=
rightblock
=
prevblock
;
deque
->
rightindex
=
BLOCKLEN
-
1
;
}
if
(
deque
->
leftindex
==
0
)
{
block
*
b
=
newblock
(
NULL
,
leftblock
,
deque
->
len
);
if
(
b
==
NULL
)
{
deque
->
len
--
;
Py_DECREF
(
item
);
return
-
1
;
}
assert
(
leftblock
->
leftlink
==
NULL
);
leftblock
->
leftlink
=
b
;
deque
->
leftblock
=
leftblock
=
b
;
deque
->
leftindex
=
BLOCKLEN
;
}
deque
->
leftindex
--
;
leftblock
->
data
[
deque
->
leftindex
]
=
item
;
}
for
(
i
=
0
;
i
>
n
;
i
--
)
{
item
=
deque_popleft
(
deque
,
NULL
);
assert
(
leftblock
!=
NULL
);
item
=
leftblock
->
data
[
deque
->
leftindex
];
assert
(
item
!=
NULL
);
rv
=
deque_append
(
deque
,
item
);
Py_DECREF
(
item
);
if
(
rv
==
NULL
)
return
-
1
;
Py_DECREF
(
rv
);
deque
->
leftindex
++
;
if
(
deque
->
leftindex
==
BLOCKLEN
)
{
assert
(
leftblock
!=
rightblock
);
prevblock
=
leftblock
->
rightlink
;
freeblock
(
leftblock
);
assert
(
prevblock
!=
NULL
);
prevblock
->
leftlink
=
NULL
;
deque
->
leftblock
=
leftblock
=
prevblock
;
deque
->
leftindex
=
0
;
}
if
(
deque
->
rightindex
==
BLOCKLEN
-
1
)
{
block
*
b
=
newblock
(
rightblock
,
NULL
,
deque
->
len
);
if
(
b
==
NULL
)
{
deque
->
len
--
;
Py_DECREF
(
item
);
return
-
1
;
}
assert
(
rightblock
->
rightlink
==
NULL
);
rightblock
->
rightlink
=
b
;
deque
->
rightblock
=
rightblock
=
b
;
deque
->
rightindex
=
-
1
;
}
deque
->
rightindex
++
;
rightblock
->
data
[
deque
->
rightindex
]
=
item
;
}
return
0
;
}
...
...
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