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
dee76e62
Kaydet (Commit)
dee76e62
authored
Ock 13, 2012
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #13774: json: Fix a SystemError when a bogus encoding is passed to
json.loads().
üst
44765e58
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
test_unicode.py
Lib/json/tests/test_unicode.py
+4
-0
NEWS
Misc/NEWS
+3
-0
_json.c
Modules/_json.c
+8
-1
No files found.
Lib/json/tests/test_unicode.py
Dosyayı görüntüle @
dee76e62
...
...
@@ -80,6 +80,10 @@ class TestUnicode(object):
# Issue 10038.
self
.
assertEqual
(
type
(
self
.
loads
(
'"foo"'
)),
unicode
)
def
test_bad_encoding
(
self
):
self
.
assertRaises
(
UnicodeEncodeError
,
self
.
loads
,
'"a"'
,
u"rat
\xe9
"
)
self
.
assertRaises
(
TypeError
,
self
.
loads
,
'"a"'
,
1
)
class
TestPyUnicode
(
TestUnicode
,
PyTest
):
pass
class
TestCUnicode
(
TestUnicode
,
CTest
):
pass
Misc/NEWS
Dosyayı görüntüle @
dee76e62
...
...
@@ -374,6 +374,9 @@ Library
Extension
Modules
-----------------
-
Issue
#
13774
:
json
:
Fix
a
SystemError
when
a
bogus
encoding
is
passed
to
json
.
loads
().
-
Issue
#
9975
:
socket
:
Fix
incorrect
use
of
flowinfo
and
scope_id
.
Patch
by
Vilmos
Nebehaj
.
...
...
Modules/_json.c
Dosyayı görüntüle @
dee76e62
...
...
@@ -1725,8 +1725,15 @@ scanner_init(PyObject *self, PyObject *args, PyObject *kwds)
Py_DECREF
(
s
->
encoding
);
s
->
encoding
=
tmp
;
}
if
(
s
->
encoding
==
NULL
||
!
PyString_Check
(
s
->
encoding
)
)
if
(
s
->
encoding
==
NULL
)
goto
bail
;
if
(
!
PyString_Check
(
s
->
encoding
))
{
PyErr_Format
(
PyExc_TypeError
,
"encoding must be a string, not %.80s"
,
Py_TYPE
(
s
->
encoding
)
->
tp_name
);
goto
bail
;
}
/* All of these will fail "gracefully" so we don't need to verify them */
s
->
strict
=
PyObject_GetAttrString
(
ctx
,
"strict"
);
...
...
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