This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author bugs-python@vendor.thewrittenword.com
Recipients amaury.forgeotdarc, belopolsky, bugs-python@vendor.thewrittenword.com, hfuru, meador.inge
Date 2011-10-18.05:58:11
SpamBayes Score 0.0032546734
Marked as misclassified No
Message-id <1318917492.82.0.181265433627.issue10320@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2011-10-18 05:58:12bugs-python@vendor.thewrittenword.comsetrecipients: + bugs-python@vendor.thewrittenword.com, amaury.forgeotdarc, belopolsky, hfuru, meador.inge
2011-10-18 05:58:12bugs-python@vendor.thewrittenword.comsetmessageid: <1318917492.82.0.181265433627.issue10320@psf.upfronthosting.co.za>
2011-10-18 05:58:12bugs-python@vendor.thewrittenword.comlinkissue10320 messages
2011-10-18 05:58:11bugs-python@vendor.thewrittenword.comcreate