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.

Unsupported provider

classification
Title: py3k: correction for test_float on Windows
Type: crash Stage:
Components: Windows Versions: Python 3.0
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: amaury.forgeotdarc, gvanrossum
Priority: normal Keywords:

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:26adminsetgithub: 45389
2007-08-29 18:42:34gvanrossumsetstatus: open -> closed
resolution: accepted
messages: + msg55430
nosy: + gvanrossum
2007-08-28 23:29:48amaury.forgeotdarccreate