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
2412853f
Kaydet (Commit)
2412853f
authored
Eyl 09, 2002
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix escaping of non-ASCII characters.
üst
8a64d409
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
test_pep263.py
Lib/test/test_pep263.py
+1
-0
stringobject.c
Objects/stringobject.c
+4
-2
No files found.
Lib/test/test_pep263.py
Dosyayı görüntüle @
2412853f
#! -*- coding: koi8-r -*-
assert
u""
.
encode
(
"utf-8"
)
==
'
\xd0\x9f\xd0\xb8\xd1\x82\xd0\xbe\xd0\xbd
'
assert
u"
\"
.encode("
utf
-
8
") == '
\\\xd0\x9f
'
Objects/stringobject.c
Dosyayı görüntüle @
2412853f
...
...
@@ -541,6 +541,7 @@ PyObject *PyString_DecodeEscape(const char *s,
end
=
s
+
len
;
while
(
s
<
end
)
{
if
(
*
s
!=
'\\'
)
{
non_esc:
#ifdef Py_USING_UNICODE
if
(
recode_encoding
&&
(
*
s
&
0x80
))
{
PyObject
*
u
,
*
w
;
...
...
@@ -656,8 +657,9 @@ PyObject *PyString_DecodeEscape(const char *s,
#endif
default:
*
p
++
=
'\\'
;
*
p
++
=
s
[
-
1
];
break
;
s
--
;
goto
non_esc
;
/* an arbitry number of unescaped
UTF-8 bytes may follow. */
}
}
if
(
p
-
buf
<
newlen
)
...
...
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