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.

classification
Title: C99 code in _json.c
Type: compile error Stage: resolved
Components: Build Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: akitada, pitrou
Priority: normal Keywords: patch

Created on 2010-10-09 08:32 by akitada, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
_json.c.diff akitada, 2010-10-09 08:32
Messages (2)
msg118255 - (view) Author: Akira Kitada (akitada) * Date: 2010-10-09 08:32
I found some C99 code in _json.c.
Attached patch makes it C89.

The C99 part is only used for ucs4 Python. That's probably the reason
it's overlooked.
msg118277 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-10-09 15:29
Fixed in 3.2 (r85342), 3.1 (r85343) and 2.7 (r85344). Thank you!
History
Date User Action Args
2022-04-11 14:57:07adminsetgithub: 54264
2010-10-09 15:29:41pitrousetstatus: open -> closed

versions: + Python 3.1, Python 3.2
nosy: + pitrou

messages: + msg118277
resolution: fixed
stage: resolved
2010-10-09 08:32:03akitadacreate