[issue46816] Remove declarations for non-__STDC__ compilers

2022-02-25 Thread STINNER Victor
STINNER Victor added the comment: New changeset 4060111f9dc44682f9d7bdafb4e7dacb96706ad3 by Oleg Iarygin in branch 'main': bpo-46816: Remove declarations for non-__STDC__ compilers (GH-31466) https://github.com/python/cpython/commit/4060111f9dc44682f9d7bdafb4e7dacb96706ad3 -- _

[issue46816] Remove declarations for non-__STDC__ compilers

2022-02-25 Thread STINNER Victor
STINNER Victor added the comment: It should be fine :-D Thanks. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue46816] Remove declarations for non-__STDC__ compilers

2022-02-25 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue46816] Remove declarations for non-__STDC__ compilers

2022-02-21 Thread Oleg Iarygin
Change by Oleg Iarygin : -- keywords: +patch pull_requests: +29596 stage: -> patch review pull_request: https://github.com/python/cpython/pull/31466 ___ Python tracker ___ ___

[issue46816] Remove declarations for non-__STDC__ compilers

2022-02-21 Thread Oleg Iarygin
New submission from Oleg Iarygin : 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 swi