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
ec6cd162
Kaydet (Commit)
ec6cd162
authored
Haz 02, 2015
tarafından
Eric Snow
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge from 3.5.
üst
e9dd08d0
b952ab43
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
4 deletions
+12
-4
test_collections.py
Lib/test/test_collections.py
+0
-4
NEWS
Misc/NEWS
+2
-0
odictobject.c
Objects/odictobject.c
+10
-0
No files found.
Lib/test/test_collections.py
Dosyayı görüntüle @
ec6cd162
...
...
@@ -1746,10 +1746,6 @@ class OrderedDictTests:
self
.
assertEqual
(
list
(
reversed
(
od
.
items
())),
list
(
reversed
(
pairs
)))
def
test_detect_deletion_during_iteration
(
self
):
# XXX This test should also work under cOrderedDict.
if
self
.
module
is
c_coll
:
raise
unittest
.
SkipTest
(
"only valid for pure Python OrderedDict"
)
OrderedDict
=
self
.
module
.
OrderedDict
od
=
OrderedDict
.
fromkeys
(
'abc'
)
it
=
iter
(
od
)
...
...
Misc/NEWS
Dosyayı görüntüle @
ec6cd162
...
...
@@ -31,6 +31,8 @@ Library
-
Issue
#
24348
:
Drop
superfluous
incref
/
decref
.
-
Issue
#
24359
:
Check
for
changed
OrderedDict
size
during
iteration
.
What
's New in Python 3.5.0 beta 2?
==================================
...
...
Objects/odictobject.c
Dosyayı görüntüle @
ec6cd162
...
...
@@ -1796,6 +1796,7 @@ typedef struct {
PyObject_HEAD
int
kind
;
PyODictObject
*
di_odict
;
Py_ssize_t
di_size
;
PyObject
*
di_current
;
PyObject
*
di_result
;
/* reusable result tuple for iteritems */
}
odictiterobject
;
...
...
@@ -1835,6 +1836,14 @@ odictiter_nextkey(odictiterobject *di)
if
(
di
->
di_current
==
NULL
)
goto
done
;
/* We're already done. */
/* Check for unsupported changes. */
if
(
di
->
di_size
!=
PyODict_SIZE
(
di
->
di_odict
))
{
PyErr_SetString
(
PyExc_RuntimeError
,
"OrderedDict changed size during iteration"
);
di
->
di_size
=
-
1
;
/* Make this state sticky */
return
NULL
;
}
/* Get the key. */
node
=
_odict_find_node
(
di
->
di_odict
,
di
->
di_current
);
if
(
node
==
NULL
)
{
...
...
@@ -2033,6 +2042,7 @@ odictiter_new(PyODictObject *od, int kind)
node
=
reversed
?
_odict_LAST
(
od
)
:
_odict_FIRST
(
od
);
di
->
di_current
=
node
?
_odictnode_KEY
(
node
)
:
NULL
;
Py_XINCREF
(
di
->
di_current
);
di
->
di_size
=
PyODict_SIZE
(
od
);
di
->
di_odict
=
od
;
Py_INCREF
(
od
);
...
...
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