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
db5d33e4
Kaydet (Commit)
db5d33e4
authored
May 12, 2007
tarafından
Walter Dörwald
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Reuse static global hexdigits array.
üst
79e913ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
14 deletions
+12
-14
unicodeobject.c
Objects/unicodeobject.c
+12
-14
No files found.
Objects/unicodeobject.c
Dosyayı görüntüle @
db5d33e4
...
...
@@ -2362,8 +2362,6 @@ PyObject *PyUnicode_EncodeRawUnicodeEscape(const Py_UNICODE *s,
char
*
p
;
char
*
q
;
static
const
char
*
hexdigit
=
"0123456789abcdef"
;
#ifdef Py_UNICODE_WIDE
repr
=
PyString_FromStringAndSize
(
NULL
,
10
*
size
);
#else
...
...
@@ -2382,14 +2380,14 @@ PyObject *PyUnicode_EncodeRawUnicodeEscape(const Py_UNICODE *s,
if
(
ch
>=
0x10000
)
{
*
p
++
=
'\\'
;
*
p
++
=
'U'
;
*
p
++
=
hexdigit
[(
ch
>>
28
)
&
0xf
];
*
p
++
=
hexdigit
[(
ch
>>
24
)
&
0xf
];
*
p
++
=
hexdigit
[(
ch
>>
20
)
&
0xf
];
*
p
++
=
hexdigit
[(
ch
>>
16
)
&
0xf
];
*
p
++
=
hexdigit
[(
ch
>>
12
)
&
0xf
];
*
p
++
=
hexdigit
[(
ch
>>
8
)
&
0xf
];
*
p
++
=
hexdigit
[(
ch
>>
4
)
&
0xf
];
*
p
++
=
hexdigit
[
ch
&
15
];
*
p
++
=
hexdigit
s
[(
ch
>>
28
)
&
0xf
];
*
p
++
=
hexdigit
s
[(
ch
>>
24
)
&
0xf
];
*
p
++
=
hexdigit
s
[(
ch
>>
20
)
&
0xf
];
*
p
++
=
hexdigit
s
[(
ch
>>
16
)
&
0xf
];
*
p
++
=
hexdigit
s
[(
ch
>>
12
)
&
0xf
];
*
p
++
=
hexdigit
s
[(
ch
>>
8
)
&
0xf
];
*
p
++
=
hexdigit
s
[(
ch
>>
4
)
&
0xf
];
*
p
++
=
hexdigit
s
[
ch
&
15
];
}
else
#endif
...
...
@@ -2397,10 +2395,10 @@ PyObject *PyUnicode_EncodeRawUnicodeEscape(const Py_UNICODE *s,
if
(
ch
>=
256
)
{
*
p
++
=
'\\'
;
*
p
++
=
'u'
;
*
p
++
=
hexdigit
[(
ch
>>
12
)
&
0xf
];
*
p
++
=
hexdigit
[(
ch
>>
8
)
&
0xf
];
*
p
++
=
hexdigit
[(
ch
>>
4
)
&
0xf
];
*
p
++
=
hexdigit
[
ch
&
15
];
*
p
++
=
hexdigit
s
[(
ch
>>
12
)
&
0xf
];
*
p
++
=
hexdigit
s
[(
ch
>>
8
)
&
0xf
];
*
p
++
=
hexdigit
s
[(
ch
>>
4
)
&
0xf
];
*
p
++
=
hexdigit
s
[
ch
&
15
];
}
/* Copy everything else as-is */
else
...
...
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