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 arhadthedev
Recipients arhadthedev
Date 2022-02-21.10:48:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1645440519.15.0.480736088206.issue46816@roundup.psfhosted.org>
In-reply-to
Content
Currently, Python code contains two places where presence of __STDC__ is checked:

- Include/internal/pycore_pymath.h:12
- Python/errors.c:13

These checks are used to add extern functions missing in non-standard versions of math.h.

However, after Python switched to C99, there is a guarantee that every compiler conforms to ISO C so checks of __STDC__ have no sense anymore.

Note, that:

- errors.c check was added by 53e8d44 on 9 Mar 1995
- pycore_pymath.h check was initially added into Objects/floatobject.c by eddc144 on 20 Nov 2003 then moved to pycore_pymath by 53876d9.
History
Date User Action Args
2022-02-21 10:48:39arhadthedevsetrecipients: + arhadthedev
2022-02-21 10:48:39arhadthedevsetmessageid: <1645440519.15.0.480736088206.issue46816@roundup.psfhosted.org>
2022-02-21 10:48:39arhadthedevlinkissue46816 messages
2022-02-21 10:48:38arhadthedevcreate