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
c4a35daa
Kaydet (Commit)
c4a35daa
authored
Eki 30, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #28541: Improve test coverage for encoding detection in json library.
Original patch by Eric Appelt.
üst
a0d9c685
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
__init__.py
Lib/json/__init__.py
+2
-1
test_unicode.py
Lib/test/test_json/test_unicode.py
+13
-0
No files found.
Lib/json/__init__.py
Dosyayı görüntüle @
c4a35daa
...
@@ -257,7 +257,8 @@ def detect_encoding(b):
...
@@ -257,7 +257,8 @@ def detect_encoding(b):
return
'utf-16-be'
if
b
[
1
]
else
'utf-32-be'
return
'utf-16-be'
if
b
[
1
]
else
'utf-32-be'
if
not
b
[
1
]:
if
not
b
[
1
]:
# XX 00 00 00 - utf-32-le
# XX 00 00 00 - utf-32-le
# XX 00 XX XX - utf-16-le
# XX 00 00 XX - utf-16-le
# XX 00 XX -- - utf-16-le
return
'utf-16-le'
if
b
[
2
]
or
b
[
3
]
else
'utf-32-le'
return
'utf-16-le'
if
b
[
2
]
or
b
[
3
]
else
'utf-32-le'
elif
len
(
b
)
==
2
:
elif
len
(
b
)
==
2
:
if
not
b
[
0
]:
if
not
b
[
0
]:
...
...
Lib/test/test_json/test_unicode.py
Dosyayı görüntüle @
c4a35daa
...
@@ -65,6 +65,19 @@ class TestUnicode:
...
@@ -65,6 +65,19 @@ class TestUnicode:
self
.
assertEqual
(
self
.
loads
(
bom
+
encoded
),
data
)
self
.
assertEqual
(
self
.
loads
(
bom
+
encoded
),
data
)
self
.
assertEqual
(
self
.
loads
(
encoded
),
data
)
self
.
assertEqual
(
self
.
loads
(
encoded
),
data
)
self
.
assertRaises
(
UnicodeDecodeError
,
self
.
loads
,
b
'["
\x80
"]'
)
self
.
assertRaises
(
UnicodeDecodeError
,
self
.
loads
,
b
'["
\x80
"]'
)
# RFC-7159 and ECMA-404 extend JSON to allow documents that
# consist of only a string, which can present a special case
# not covered by the encoding detection patterns specified in
# RFC-4627 for utf-16-le (XX 00 XX 00).
self
.
assertEqual
(
self
.
loads
(
'"
\u2600
"'
.
encode
(
'utf-16-le'
)),
'
\u2600
'
)
# Encoding detection for small (<4) bytes objects
# is implemented as a special case. RFC-7159 and ECMA-404
# allow single codepoint JSON documents which are only two
# bytes in utf-16 encodings w/o BOM.
self
.
assertEqual
(
self
.
loads
(
b
'5
\x00
'
),
5
)
self
.
assertEqual
(
self
.
loads
(
b
'
\x00
7'
),
7
)
self
.
assertEqual
(
self
.
loads
(
b
'57'
),
57
)
def
test_object_pairs_hook_with_unicode
(
self
):
def
test_object_pairs_hook_with_unicode
(
self
):
s
=
'{"xkd":1, "kcw":2, "art":3, "hxm":4, "qrt":5, "pad":6, "hoy":7}'
s
=
'{"xkd":1, "kcw":2, "art":3, "hxm":4, "qrt":5, "pad":6, "hoy":7}'
...
...
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