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
b86f08f7
Kaydet (Commit)
b86f08f7
authored
Eki 03, 2014
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
faulthandler: enhance dump_ascii() to escape also non-printable ASCII
characters (U+0000..U+001f and U+007f).
üst
392f4139
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
traceback.c
Python/traceback.c
+5
-4
No files found.
Python/traceback.c
Dosyayı görüntüle @
b86f08f7
...
...
@@ -541,15 +541,16 @@ dump_ascii(int fd, PyObject *text)
ch
=
PyUnicode_READ
(
kind
,
data
,
i
);
else
ch
=
wstr
[
i
];
if
(
ch
<
128
)
{
if
(
' '
<=
ch
&&
ch
<=
126
)
{
/* printable ASCII character */
char
c
=
(
char
)
ch
;
write
(
fd
,
&
c
,
1
);
}
else
if
(
ch
<
0xff
)
{
else
if
(
ch
<
=
0xff
)
{
PUTS
(
fd
,
"
\\
x"
);
dump_hexadecimal
(
fd
,
ch
,
2
);
}
else
if
(
ch
<
0xffff
)
{
else
if
(
ch
<
=
0xffff
)
{
PUTS
(
fd
,
"
\\
u"
);
dump_hexadecimal
(
fd
,
ch
,
4
);
}
...
...
@@ -644,7 +645,7 @@ write_thread_id(int fd, PyThreadState *tstate, int is_current)
PUTS
(
fd
,
"Current thread 0x"
);
else
PUTS
(
fd
,
"Thread 0x"
);
dump_hexadecimal
(
fd
,
(
unsigned
long
)
tstate
->
thread_id
,
sizeof
(
long
)
*
2
);
dump_hexadecimal
(
fd
,
(
unsigned
long
)
tstate
->
thread_id
,
sizeof
(
unsigned
long
)
*
2
);
PUTS
(
fd
,
" (most recent call first):
\n
"
);
}
...
...
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