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
e9dd08d0
Kaydet (Commit)
e9dd08d0
authored
Haz 02, 2015
tarafından
Eric Snow
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge from 3.5.
üst
c976b730
d1719756
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
33 deletions
+27
-33
test_collections.py
Lib/test/test_collections.py
+12
-0
NEWS
Misc/NEWS
+2
-0
odictobject.c
Objects/odictobject.c
+13
-33
No files found.
Lib/test/test_collections.py
Dosyayı görüntüle @
e9dd08d0
...
...
@@ -2063,6 +2063,18 @@ class CPythonOrderedDictTests(OrderedDictTests, unittest.TestCase):
with
self
.
assertRaises
(
KeyError
):
od
.
copy
()
def
test_issue24348
(
self
):
OrderedDict
=
self
.
module
.
OrderedDict
class
Key
:
def
__hash__
(
self
):
return
1
od
=
OrderedDict
()
od
[
Key
()]
=
0
# This should not crash.
od
.
popitem
()
class
PurePythonGeneralMappingTests
(
mapping_tests
.
BasicTestMappingProtocol
):
...
...
Misc/NEWS
Dosyayı görüntüle @
e9dd08d0
...
...
@@ -29,6 +29,8 @@ Library
-
Issue
#
24347
:
Set
KeyError
if
PyDict_GetItemWithError
returns
NULL
.
-
Issue
#
24348
:
Drop
superfluous
incref
/
decref
.
What
's New in Python 3.5.0 beta 2?
==================================
...
...
Objects/odictobject.c
Dosyayı görüntüle @
e9dd08d0
...
...
@@ -1073,36 +1073,32 @@ PyDoc_STRVAR(odict_setdefault__doc__,
static
PyObject
*
odict_setdefault
(
register
PyODictObject
*
od
,
PyObject
*
args
)
{
_ODictNode
*
node
;
PyObject
*
key
,
*
result
=
NULL
;
PyObject
*
failobj
=
Py_None
;
/* both borrowed */
if
(
!
PyArg_UnpackTuple
(
args
,
"setdefault"
,
1
,
2
,
&
key
,
&
failobj
))
return
NULL
;
Py_INCREF
(
key
);
Py_INCREF
(
failobj
);
if
(
PyODict_CheckExact
(
od
))
{
node
=
_odict_find_node
(
od
,
key
);
if
(
node
==
NULL
)
{
if
(
PyErr_Occurred
())
{
goto
done
;
}
else
if
(
PyODict_SetItem
((
PyObject
*
)
od
,
key
,
failobj
)
>=
0
)
{
result
=
PyODict_GetItemWithError
(
od
,
key
);
/* borrowed */
if
(
result
==
NULL
)
{
if
(
PyErr_Occurred
())
return
NULL
;
assert
(
_odict_find_node
(
od
,
key
)
==
NULL
);
if
(
PyODict_SetItem
((
PyObject
*
)
od
,
key
,
failobj
)
>=
0
)
{
result
=
failobj
;
Py_INCREF
(
failobj
);
}
}
else
{
result
=
PyODict_GetItem
(
od
,
key
);
/* borrowed reference */
Py_XINCREF
(
result
);
Py_INCREF
(
result
);
}
}
else
{
int
exists
=
PySequence_Contains
((
PyObject
*
)
od
,
key
);
if
(
exists
<
0
)
{
goto
done
;
return
NULL
;
}
else
if
(
exists
)
{
result
=
PyObject_GetItem
((
PyObject
*
)
od
,
key
);
...
...
@@ -1113,9 +1109,6 @@ odict_setdefault(register PyODictObject *od, PyObject *args)
}
}
done:
Py_DECREF
(
failobj
);
Py_DECREF
(
key
);
return
result
;
}
...
...
@@ -1150,21 +1143,18 @@ _odict_popkey(PyObject *od, PyObject *key, PyObject *failobj)
_ODictNode
*
node
;
PyObject
*
value
=
NULL
;
Py_INCREF
(
key
);
Py_XINCREF
(
failobj
);
/* Pop the node first to avoid a possible dict resize (due to
eval loop reentrancy) and complications due to hash collision
resolution. */
node
=
_odict_find_node
((
PyODictObject
*
)
od
,
key
);
if
(
node
==
NULL
)
{
if
(
PyErr_Occurred
())
goto
done
;
return
NULL
;
}
else
{
int
res
=
_odict_clear_node
((
PyODictObject
*
)
od
,
node
,
key
);
if
(
res
<
0
)
{
goto
done
;
return
NULL
;
}
}
...
...
@@ -1178,7 +1168,7 @@ _odict_popkey(PyObject *od, PyObject *key, PyObject *failobj)
else
{
int
exists
=
PySequence_Contains
(
od
,
key
);
if
(
exists
<
0
)
goto
done
;
return
NULL
;
if
(
exists
)
{
value
=
PyObject_GetItem
(
od
,
key
);
if
(
value
!=
NULL
)
{
...
...
@@ -1200,9 +1190,6 @@ _odict_popkey(PyObject *od, PyObject *key, PyObject *failobj)
}
}
done:
Py_DECREF
(
key
);
Py_XDECREF
(
failobj
);
return
value
;
}
...
...
@@ -1229,19 +1216,19 @@ odict_popitem(PyObject *od, PyObject *args)
if
(
!
PyArg_UnpackTuple
(
args
,
"popitem"
,
0
,
1
,
&
last
))
/* borrowed */
return
NULL
;
Py_XINCREF
(
last
);
if
(
last
==
NULL
||
last
==
Py_True
)
node
=
_odict_LAST
((
PyODictObject
*
)
od
);
else
node
=
_odict_FIRST
((
PyODictObject
*
)
od
);
Py_XDECREF
(
last
);
key
=
_odictnode_KEY
(
node
);
Py_INCREF
(
key
);
value
=
_odict_popkey
(
od
,
key
,
NULL
);
if
(
value
==
NULL
)
return
NULL
;
item
=
PyTuple_Pack
(
2
,
key
,
value
);
Py_DECREF
(
key
);
Py_DECREF
(
value
);
return
item
;
}
...
...
@@ -1381,17 +1368,13 @@ odict_move_to_end(PyODictObject *od, PyObject *args)
/* both borrowed */
if
(
!
PyArg_UnpackTuple
(
args
,
"move_to_end"
,
1
,
2
,
&
key
,
&
last
))
return
NULL
;
Py_INCREF
(
key
);
if
(
_odict_EMPTY
(
od
))
{
PyErr_SetObject
(
PyExc_KeyError
,
key
);
Py_DECREF
(
key
);
return
NULL
;
}
if
(
last
!=
NULL
)
{
int
is_true
;
Py_INCREF
(
last
);
is_true
=
PyObject_IsTrue
(
last
);
Py_DECREF
(
last
);
if
(
is_true
==
-
1
)
return
NULL
;
pos
=
is_true
?
-
1
:
0
;
...
...
@@ -1410,7 +1393,6 @@ odict_move_to_end(PyODictObject *od, PyObject *args)
else
{
if
(
!
PyErr_Occurred
())
PyErr_SetObject
(
PyExc_KeyError
,
key
);
Py_DECREF
(
key
);
return
NULL
;
}
}
...
...
@@ -1429,12 +1411,10 @@ odict_move_to_end(PyODictObject *od, PyObject *args)
else
{
if
(
!
PyErr_Occurred
())
PyErr_SetObject
(
PyExc_KeyError
,
key
);
Py_DECREF
(
key
);
return
NULL
;
}
}
}
Py_DECREF
(
key
);
Py_RETURN_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