Kaydet (Commit) 062cbb67 authored tarafından Zackery Spytz's avatar Zackery Spytz Kaydeden (comit) Serhiy Storchaka

bpo-10320: Replace nonstandard sprintf() length modifier in ctypes' PyCArg_repr(). (GH-10853)

Use "ll" instead of the nonstandard "q".
üst c667b094
......@@ -484,7 +484,7 @@ PyCArg_repr(PyCArgObject *self)
#ifdef MS_WIN32
"<cparam '%c' (%I64d)>",
#else
"<cparam '%c' (%qd)>",
"<cparam '%c' (%lld)>",
#endif
self->tag, self->value.q);
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment