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
e7c6ee4b
Kaydet (Commit)
e7c6ee4b
authored
Şub 06, 2002
tarafından
Marc-André Lemburg
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Whitespace fixes.
üst
3688a882
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
unicodeobject.c
Objects/unicodeobject.c
+11
-11
No files found.
Objects/unicodeobject.c
Dosyayı görüntüle @
e7c6ee4b
...
...
@@ -1203,9 +1203,9 @@ PyObject *PyUnicode_EncodeUTF8(const Py_UNICODE *s,
if
(
cbWritten
>=
cbAllocated
)
{
cbAllocated
+=
4
*
10
;
if
(
_PyString_Resize
(
&
v
,
cbAllocated
+
4
))
goto
onError
;
goto
onError
;
p
=
PyString_AS_STRING
(
v
)
+
cbWritten
;
}
}
if
(
ch
<
0x10000
)
{
/* Check for high surrogate */
...
...
@@ -1225,19 +1225,19 @@ PyObject *PyUnicode_EncodeUTF8(const Py_UNICODE *s,
/* Fall through: handles isolated high surrogates */
}
*
p
++
=
(
char
)(
0xe0
|
(
ch
>>
12
));
*
p
++
=
(
char
)(
0x80
|
((
ch
>>
6
)
&
0x3f
));
*
p
++
=
(
char
)(
0x80
|
(
ch
&
0x3f
));
*
p
++
=
(
char
)(
0x80
|
((
ch
>>
6
)
&
0x3f
));
*
p
++
=
(
char
)(
0x80
|
(
ch
&
0x3f
));
cbWritten
+=
3
;
}
else
{
*
p
++
=
0xf0
|
(
ch
>>
18
);
*
p
++
=
0x80
|
((
ch
>>
12
)
&
0x3f
);
*
p
++
=
0x80
|
((
ch
>>
6
)
&
0x3f
);
*
p
++
=
0x80
|
(
ch
&
0x3f
);
cbWritten
+=
4
;
}
else
{
*
p
++
=
0xf0
|
(
ch
>>
18
);
*
p
++
=
0x80
|
((
ch
>>
12
)
&
0x3f
);
*
p
++
=
0x80
|
((
ch
>>
6
)
&
0x3f
);
*
p
++
=
0x80
|
(
ch
&
0x3f
);
cbWritten
+=
4
;
}
}
}
}
*
p
=
'\0'
;
if
(
_PyString_Resize
(
&
v
,
cbWritten
))
goto
onError
;
...
...
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