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
501182a4
Kaydet (Commit)
501182a4
authored
May 03, 2015
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
just sort the items tuple directly (closes #24094)
üst
51454a62
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
27 deletions
+25
-27
test_dump.py
Lib/test/test_json/test_dump.py
+19
-0
NEWS
Misc/NEWS
+3
-0
_json.c
Modules/_json.c
+3
-27
No files found.
Lib/test/test_json/test_dump.py
Dosyayı görüntüle @
501182a4
...
...
@@ -28,6 +28,25 @@ class TestDump:
self
.
assertEqual
(
self
.
dumps
(
a
,
default
=
crasher
),
'[null, null, null, null, null]'
)
# Issue 24094
def
test_encode_evil_dict
(
self
):
class
D
(
dict
):
def
keys
(
self
):
return
L
class
X
:
def
__hash__
(
self
):
del
L
[
0
]
return
1337
def
__lt__
(
self
,
o
):
return
0
L
=
[
X
()
for
i
in
range
(
1122
)]
d
=
D
()
d
[
1337
]
=
"true.dat"
self
.
assertEqual
(
self
.
dumps
(
d
,
sort_keys
=
True
),
'{"1337": "true.dat"}'
)
class
TestPyDump
(
TestDump
,
PyTest
):
pass
...
...
Misc/NEWS
Dosyayı görüntüle @
501182a4
...
...
@@ -19,6 +19,9 @@ Core and Builtins
Library
-------
- Issue #24094: Fix possible crash in json.encode with poorly behaved dict
subclasses.
- Issue #23367: Fix possible overflows in the unicodedata module.
- Issue #23361: Fix possible overflow in Windows subprocess creation code.
...
...
Modules/_json.c
Dosyayı görüntüle @
501182a4
...
...
@@ -1527,35 +1527,11 @@ encoder_listencode_dict(PyEncoderObject *s, _PyAccu *acc,
*/
}
if
(
PyObject_IsTrue
(
s
->
sort_keys
))
{
/* First sort the keys then replace them with (key, value) tuples. */
Py_ssize_t
i
,
nitems
;
items
=
PyMapping_Keys
(
dct
);
if
(
items
==
NULL
)
goto
bail
;
if
(
!
PyList_Check
(
items
))
{
PyErr_SetString
(
PyExc_ValueError
,
"keys must return list"
);
goto
bail
;
}
if
(
PyList_Sort
(
items
)
<
0
)
goto
bail
;
nitems
=
PyList_GET_SIZE
(
items
);
for
(
i
=
0
;
i
<
nitems
;
i
++
)
{
PyObject
*
key
,
*
value
;
key
=
PyList_GET_ITEM
(
items
,
i
);
value
=
PyDict_GetItem
(
dct
,
key
);
item
=
PyTuple_Pack
(
2
,
key
,
value
);
if
(
item
==
NULL
)
goto
bail
;
PyList_SET_ITEM
(
items
,
i
,
item
);
Py_DECREF
(
key
);
}
}
else
{
items
=
PyMapping_Items
(
dct
);
}
items
=
PyMapping_Items
(
dct
);
if
(
items
==
NULL
)
goto
bail
;
if
(
PyObject_IsTrue
(
s
->
sort_keys
)
&&
PyList_Sort
(
items
)
<
0
)
goto
bail
;
it
=
PyObject_GetIter
(
items
);
Py_DECREF
(
items
);
if
(
it
==
NULL
)
...
...
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