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
3ffa8b9b
Unverified
Kaydet (Commit)
3ffa8b9b
authored
Ara 06, 2018
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Ara 06, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-35384: The repr of ctypes.CArgObject no longer fails for non-ascii character. (GH-10863)
üst
9dfc754d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
4 deletions
+23
-4
test_bytes.py
Lib/ctypes/test/test_bytes.py
+1
-0
callproc.c
Modules/_ctypes/callproc.c
+22
-4
No files found.
Lib/ctypes/test/test_bytes.py
Dosyayı görüntüle @
3ffa8b9b
...
...
@@ -12,6 +12,7 @@ class BytesTest(unittest.TestCase):
x
.
value
=
"y"
c_char
.
from_param
(
b
"x"
)
self
.
assertRaises
(
TypeError
,
c_char
.
from_param
,
"x"
)
self
.
assertIn
(
'xbd'
,
repr
(
c_char
.
from_param
(
b
"
\xbd
"
)))
(
c_char
*
3
)(
b
"a"
,
b
"b"
,
b
"c"
)
self
.
assertRaises
(
TypeError
,
c_char
*
3
,
"a"
,
"b"
,
"c"
)
...
...
Modules/_ctypes/callproc.c
Dosyayı görüntüle @
3ffa8b9b
...
...
@@ -455,6 +455,12 @@ PyCArg_dealloc(PyCArgObject *self)
PyObject_Del
(
self
);
}
static
int
is_literal_char
(
unsigned
char
c
)
{
return
c
<
128
&&
_PyUnicode_IsPrintable
(
c
)
&&
c
!=
'\\'
&&
c
!=
'\''
;
}
static
PyObject
*
PyCArg_repr
(
PyCArgObject
*
self
)
{
...
...
@@ -501,8 +507,14 @@ PyCArg_repr(PyCArgObject *self)
break
;
case
'c'
:
sprintf
(
buffer
,
"<cparam '%c' (%c)>"
,
self
->
tag
,
self
->
value
.
c
);
if
(
is_literal_char
((
unsigned
char
)
self
->
value
.
c
))
{
sprintf
(
buffer
,
"<cparam '%c' ('%c')>"
,
self
->
tag
,
self
->
value
.
c
);
}
else
{
sprintf
(
buffer
,
"<cparam '%c' ('
\\
x%02x')>"
,
self
->
tag
,
(
unsigned
char
)
self
->
value
.
c
);
}
break
;
/* Hm, are these 'z' and 'Z' codes useful at all?
...
...
@@ -517,8 +529,14 @@ PyCArg_repr(PyCArgObject *self)
break
;
default:
sprintf
(
buffer
,
"<cparam '%c' at %p>"
,
self
->
tag
,
self
);
if
(
is_literal_char
((
unsigned
char
)
self
->
tag
))
{
sprintf
(
buffer
,
"<cparam '%c' at %p>"
,
(
unsigned
char
)
self
->
tag
,
self
);
}
else
{
sprintf
(
buffer
,
"<cparam 0x%02x at %p>"
,
(
unsigned
char
)
self
->
tag
,
self
);
}
break
;
}
return
PyUnicode_FromString
(
buffer
);
...
...
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