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: Typo in __GNU*C*_MINOR__ guard affecting gcc 3.x
Type: compile error Stage: resolved
Components: Build Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, christian.heimes, niklasf
Priority: normal Keywords:

Created on 2017-03-28 16:26 by niklasf, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 878 merged niklasf, 2017-03-28 16:28
Messages (3)
msg290738 - (view) Author: Niklas Fiekas (niklasf) * Date: 2017-03-28 16:26
The patch in http://bugs.python.org/issue16881 disables the nicer macro for gcc 3.x due to a small typo.

The build is not failing. The guard just unnescessarily evaluates to false.
msg290767 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2017-03-29 04:58
New changeset 83371f4f7f70406ea5d08c5fa8dbdbbcc0355ee1 by Benjamin Peterson (Niklas Fiekas) in branch 'master':
bpo-29936: fix typo __GNU*C*_MINOR__ (#878)
https://github.com/python/cpython/commit/83371f4f7f70406ea5d08c5fa8dbdbbcc0355ee1
msg290768 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2017-03-29 04:58
Thanks. We should probably just unsupport gcc 3.x.
History
Date User Action Args
2022-04-11 14:58:44adminsetgithub: 74122
2017-03-29 04:58:52benjamin.petersonsetstatus: open -> closed
resolution: fixed
messages: + msg290768

stage: resolved
2017-03-29 04:58:03benjamin.petersonsetnosy: + benjamin.peterson
messages: + msg290767
2017-03-28 17:20:16Jeffrey.Armstrongsetnosy: - Jeffrey.Armstrong
2017-03-28 16:30:43niklasfsetnosy: + christian.heimes, Jeffrey.Armstrong
type: compile error
components: + Build, - Interpreter Core
2017-03-28 16:28:29niklasfsetpull_requests: + pull_request777
2017-03-28 16:26:04niklasfcreate