bpo-10320: Replace nonstandard sprintf() length modifier in ctypes' PyCArg_repr(). (GH-10853)
Use "ll" instead of the nonstandard "q".
(cherry picked from commit 062cbb6772
)
Co-authored-by: Zackery Spytz <zspytz@gmail.com>
This commit is contained in:
parent
ea6b322829
commit
53e2248a94
|
@ -488,7 +488,7 @@ PyCArg_repr(PyCArgObject *self)
|
||||||
#ifdef MS_WIN32
|
#ifdef MS_WIN32
|
||||||
"<cparam '%c' (%I64d)>",
|
"<cparam '%c' (%I64d)>",
|
||||||
#else
|
#else
|
||||||
"<cparam '%c' (%qd)>",
|
"<cparam '%c' (%lld)>",
|
||||||
#endif
|
#endif
|
||||||
self->tag, self->value.q);
|
self->tag, self->value.q);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue