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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, christian.heimes, georg.brandl, rpetrov
Date 2008-09-01.21:30:10
SpamBayes Score 1.8040136e-06
Marked as misclassified No
Message-id <1220304611.8.0.302301739887.issue3743@psf.upfronthosting.co.za>
In-reply-to
Content
No, and this is the reason of the patch:
PyUnicode_FromFormat and PyErr_Format do not use the platform printf.

The code (in Objects/unicodeobject.c) is platform-independent; %zd is
the way to print a ssize_t variable on all platforms.

My only observation is that %zd does not exist before python2.5, and the
code of "multiprocessing" currently seems to be compatible with python
2.4. I don't know if this is important.
History
Date User Action Args
2008-09-01 21:30:11amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, georg.brandl, christian.heimes, rpetrov
2008-09-01 21:30:11amaury.forgeotdarcsetmessageid: <1220304611.8.0.302301739887.issue3743@psf.upfronthosting.co.za>
2008-09-01 21:30:11amaury.forgeotdarclinkissue3743 messages
2008-09-01 21:30:10amaury.forgeotdarccreate