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
101f09e7
Kaydet (Commit)
101f09e7
authored
Kas 30, 2010
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #10323: Predictable final state for slice().
üst
fdb32c15
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
3 deletions
+13
-3
test_itertools.py
Lib/test/test_itertools.py
+5
-0
NEWS
Misc/NEWS
+4
-0
itertoolsmodule.c
Modules/itertoolsmodule.c
+4
-3
No files found.
Lib/test/test_itertools.py
Dosyayı görüntüle @
101f09e7
...
...
@@ -788,6 +788,11 @@ class TestBasicOps(unittest.TestCase):
self
.
assertRaises
(
ValueError
,
islice
,
range
(
10
),
1
,
'a'
,
1
)
self
.
assertEqual
(
len
(
list
(
islice
(
count
(),
1
,
10
,
maxsize
))),
1
)
# Issue #10323: Less islice in a predictable state
c
=
count
()
self
.
assertEqual
(
list
(
islice
(
c
,
1
,
3
,
50
)),
[
1
])
self
.
assertEqual
(
next
(
c
),
3
)
def
test_takewhile
(
self
):
data
=
[
1
,
3
,
5
,
20
,
2
,
4
,
6
,
8
]
underten
=
lambda
x
:
x
<
10
...
...
Misc/NEWS
Dosyayı görüntüle @
101f09e7
...
...
@@ -28,6 +28,10 @@ Core and Builtins
Library
-------
- Issue #10323: itertools.islice() now consumes the minimum number of
inputs before stopping. Formerly, the final state of the underlying
iterator was undefined.
- Issue #10565: The collections.Iterator ABC now checks for both
__iter__ and __next__.
...
...
Modules/itertoolsmodule.c
Dosyayı görüntüle @
101f09e7
...
...
@@ -1215,6 +1215,7 @@ islice_next(isliceobject *lz)
{
PyObject
*
item
;
PyObject
*
it
=
lz
->
it
;
Py_ssize_t
stop
=
lz
->
stop
;
Py_ssize_t
oldnext
;
PyObject
*
(
*
iternext
)(
PyObject
*
);
...
...
@@ -1226,7 +1227,7 @@ islice_next(isliceobject *lz)
Py_DECREF
(
item
);
lz
->
cnt
++
;
}
if
(
lz
->
stop
!=
-
1
&&
lz
->
cnt
>=
lz
->
stop
)
if
(
stop
!=
-
1
&&
lz
->
cnt
>=
stop
)
return
NULL
;
item
=
iternext
(
it
);
if
(
item
==
NULL
)
...
...
@@ -1234,8 +1235,8 @@ islice_next(isliceobject *lz)
lz
->
cnt
++
;
oldnext
=
lz
->
next
;
lz
->
next
+=
lz
->
step
;
if
(
lz
->
next
<
oldnext
)
/* Check for overflow */
lz
->
next
=
lz
->
stop
;
if
(
lz
->
next
<
oldnext
||
(
stop
!=
-
1
&&
lz
->
next
>
stop
))
lz
->
next
=
stop
;
return
item
;
}
...
...
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