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
53a9dd77
Kaydet (Commit)
53a9dd77
authored
Ara 08, 2010
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #10546: UTF-16-LE and UTF-16-BE *do* support non-BMP characters
Fix the doc and add tests.
üst
84cc0628
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
codecs.rst
Doc/library/codecs.rst
+2
-2
test_codecs.py
Lib/test/test_codecs.py
+12
-0
No files found.
Doc/library/codecs.rst
Dosyayı görüntüle @
53a9dd77
...
...
@@ -1114,9 +1114,9 @@ particular, the following variants typically exist:
+-----------------+--------------------------------+--------------------------------+
| utf_16 | U16, utf16 | all languages |
+-----------------+--------------------------------+--------------------------------+
| utf_16_be | UTF-16BE | all languages
(BMP only)
|
| utf_16_be | UTF-16BE | all languages
|
+-----------------+--------------------------------+--------------------------------+
| utf_16_le | UTF-16LE | all languages
(BMP only)
|
| utf_16_le | UTF-16LE | all languages
|
+-----------------+--------------------------------+--------------------------------+
| utf_7 | U7, unicode-1-1-utf-7 | all languages |
+-----------------+--------------------------------+--------------------------------+
...
...
Lib/test/test_codecs.py
Dosyayı görüntüle @
53a9dd77
...
...
@@ -544,6 +544,12 @@ class UTF16LETest(ReadTest):
self
.
assertRaises
(
UnicodeDecodeError
,
codecs
.
utf_16_le_decode
,
b
"
\xff
"
,
"strict"
,
True
)
def
test_nonbmp
(
self
):
self
.
assertEqual
(
"
\U00010203
"
.
encode
(
self
.
encoding
),
b
'
\x00\xd8\x03\xde
'
)
self
.
assertEqual
(
b
'
\x00\xd8\x03\xde
'
.
decode
(
self
.
encoding
),
"
\U00010203
"
)
class
UTF16BETest
(
ReadTest
):
encoding
=
"utf-16-be"
...
...
@@ -566,6 +572,12 @@ class UTF16BETest(ReadTest):
self
.
assertRaises
(
UnicodeDecodeError
,
codecs
.
utf_16_be_decode
,
b
"
\xff
"
,
"strict"
,
True
)
def
test_nonbmp
(
self
):
self
.
assertEqual
(
"
\U00010203
"
.
encode
(
self
.
encoding
),
b
'
\xd8\x00\xde\x03
'
)
self
.
assertEqual
(
b
'
\xd8\x00\xde\x03
'
.
decode
(
self
.
encoding
),
"
\U00010203
"
)
class
UTF8Test
(
ReadTest
):
encoding
=
"utf-8"
...
...
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