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
ac93bc25
Kaydet (Commit)
ac93bc25
authored
Haz 26, 2001
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
When decoding UTF-16, don't assume that the buffer is in native endianness
when checking surrogates.
üst
208efe56
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
unicodeobject.c
Objects/unicodeobject.c
+4
-4
No files found.
Objects/unicodeobject.c
Dosyayı görüntüle @
ac93bc25
...
...
@@ -1065,16 +1065,16 @@ PyObject *PyUnicode_DecodeUTF16(const char *s,
errmsg
=
"unexpected end of data"
;
goto
utf16Error
;
}
if
(
0xD
C00
<=
*
q
&&
*
q
<=
0xDF
FF
)
{
if
(
0xD
800
<=
ch
&&
ch
<=
0xDB
FF
)
{
Py_UCS2
ch2
=
*
q
++
;
#ifdef BYTEORDER_IS_LITTLE_ENDIAN
if
(
bo
==
1
)
ch
=
(
ch
>>
8
)
|
(
ch
<<
8
);
ch
2
=
(
ch2
>>
8
)
|
(
ch2
<<
8
);
#else
if
(
bo
==
-
1
)
ch
=
(
ch
>>
8
)
|
(
ch
<<
8
);
ch
2
=
(
ch2
>>
8
)
|
(
ch2
<<
8
);
#endif
if
(
0xD
800
<=
ch
&&
ch
<=
0xDB
FF
)
{
if
(
0xD
C00
<=
ch2
&&
ch2
<=
0xDF
FF
)
{
#if Py_UNICODE_SIZE == 2
/* This is valid data (a UTF-16 surrogate pair), but
we are not able to store this information since our
...
...
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