Issue 1048: py3k: correction for test_float on Windows (original) (raw)

Issue1048

Created on 2007-08-28 23:29 by amaury.forgeotdarc, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
formatter.diff amaury.forgeotdarc,2007-08-28 23:29
Messages (2)
msg55389 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2007-08-28 23:29
test_float crashes on Windows, because the %zd format is used in a call to PyOS_snprintf(). The attached patch properly uses PY_FORMAT_SIZE_T.
msg55430 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2007-08-29 18:42
Committed revision 57670. You will have to watch the buildbots to see if this worked.
History
Date User Action Args
2022-04-11 14:56:26 admin set github: 45389
2007-08-29 18:42:34 gvanrossum set status: open -> closedresolution: acceptedmessages: + nosy: + gvanrossum
2007-08-28 23:29:48 amaury.forgeotdarc create