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
5608411a
Kaydet (Commit)
5608411a
authored
Mar 06, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #25718: Fixed pickling and copying the accumulate() iterator with total is None.
üst
b6bfce6c
d5516251
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
0 deletions
+30
-0
test_itertools.py
Lib/test/test_itertools.py
+10
-0
NEWS
Misc/NEWS
+3
-0
itertoolsmodule.c
Modules/itertoolsmodule.c
+17
-0
No files found.
Lib/test/test_itertools.py
Dosyayı görüntüle @
5608411a
...
...
@@ -1448,6 +1448,16 @@ class TestExamples(unittest.TestCase):
self
.
assertEqual
(
list
(
copy
.
deepcopy
(
it
)),
accumulated
[
1
:])
self
.
assertEqual
(
list
(
copy
.
copy
(
it
)),
accumulated
[
1
:])
def
test_accumulate_reducible_none
(
self
):
# Issue #25718: total is None
it
=
accumulate
([
None
,
None
,
None
],
operator
.
is_
)
self
.
assertEqual
(
next
(
it
),
None
)
for
proto
in
range
(
pickle
.
HIGHEST_PROTOCOL
+
1
):
it_copy
=
pickle
.
loads
(
pickle
.
dumps
(
it
,
proto
))
self
.
assertEqual
(
list
(
it_copy
),
[
True
,
False
])
self
.
assertEqual
(
list
(
copy
.
deepcopy
(
it
)),
[
True
,
False
])
self
.
assertEqual
(
list
(
copy
.
copy
(
it
)),
[
True
,
False
])
def
test_chain
(
self
):
self
.
assertEqual
(
''
.
join
(
chain
(
'ABC'
,
'DEF'
)),
'ABCDEF'
)
...
...
Misc/NEWS
Dosyayı görüntüle @
5608411a
...
...
@@ -201,6 +201,9 @@ Core and Builtins
Library
-------
-
Issue
#
25718
:
Fixed
pickling
and
copying
the
accumulate
()
iterator
with
total
is
None
.
-
Issue
#
26475
:
Fixed
debugging
output
for
regular
expressions
with
the
(?
x
)
flag
.
...
...
Modules/itertoolsmodule.c
Dosyayı görüntüle @
5608411a
...
...
@@ -3464,6 +3464,23 @@ accumulate_next(accumulateobject *lz)
static
PyObject
*
accumulate_reduce
(
accumulateobject
*
lz
)
{
if
(
lz
->
total
==
Py_None
)
{
PyObject
*
it
;
if
(
PyType_Ready
(
&
chain_type
)
<
0
)
return
NULL
;
if
(
PyType_Ready
(
&
islice_type
)
<
0
)
return
NULL
;
it
=
PyObject_CallFunction
((
PyObject
*
)
&
chain_type
,
"(O)O"
,
lz
->
total
,
lz
->
it
);
if
(
it
==
NULL
)
return
NULL
;
it
=
PyObject_CallFunction
((
PyObject
*
)
Py_TYPE
(
lz
),
"NO"
,
it
,
lz
->
binop
?
lz
->
binop
:
Py_None
);
if
(
it
==
NULL
)
return
NULL
;
return
Py_BuildValue
(
"O(NiO)"
,
&
islice_type
,
it
,
1
,
Py_None
);
}
return
Py_BuildValue
(
"O(OO)O"
,
Py_TYPE
(
lz
),
lz
->
it
,
lz
->
binop
?
lz
->
binop
:
Py_None
,
lz
->
total
?
lz
->
total
:
Py_None
);
...
...
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