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 ocean-city
Recipients mark.dickinson, ocean-city
Date 2009-10-28.07:37:16
SpamBayes Score 0.012519044
Marked as misclassified No
Message-id <1256715438.43.0.494088346915.issue7228@psf.upfronthosting.co.za>
In-reply-to
Content
Oh, I was late. I agree with msg94605.

printf("%I64d\n", 1I64 << 40); /* 1099511627776 */

So if PyErr_Format (actually, PyString_FromFormatV) will support
PY_LONG_LONG, I think we can use same technique as PY_FORMAT_SIZE_T like

#define PY_FORMAT_LONG_LONG "I64" /* On Windows */
#define PY_FORMAT_LONG_LONG "ll"  /* On Unix */
History
Date User Action Args
2009-10-28 07:37:18ocean-citysetrecipients: + ocean-city, mark.dickinson
2009-10-28 07:37:18ocean-citysetmessageid: <1256715438.43.0.494088346915.issue7228@psf.upfronthosting.co.za>
2009-10-28 07:37:17ocean-citylinkissue7228 messages
2009-10-28 07:37:16ocean-citycreate