[issue10320] printf %qd is nonstandard

bugs-python@vendor.thewrittenword.com report at bugs.python.org
Tue Oct 18 07:58:12 CEST 2011


bugs-python at vendor.thewrittenword.com <bugs-python at vendor.thewrittenword.com> added the comment:

Objects/stringobject.c already does something similar:
                else if (longlongflag)
                    sprintf(s, "%" PY_FORMAT_LONG_LONG "d",
                        va_arg(vargs, PY_LONG_LONG));
so it makes sense to do the same in Modules/_ctypes/callproc.c.

----------
nosy: +bugs-python at vendor.thewrittenword.com

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue10320>
_______________________________________


More information about the Python-bugs-list mailing list