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: Allows HUGE_VAL as extern variable
Type: Stage:
Components: Extension Modules Versions: Python 2.6
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: mark.dickinson Nosy List: mark.dickinson, ocean-city
Priority: normal Keywords: patch

Created on 2008-04-20 13:30 by ocean-city, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
cmathmodule.patch ocean-city, 2008-04-20 13:34
Messages (4)
msg65646 - (view) Author: Hirokazu Yamamoto (ocean-city) * (Python committer) Date: 2008-04-20 13:30
>/* On Windows HUGE_VAL is an extern variable and not a constant. Since the
>   special value arrays need a constant we have to roll our own infinity
>   and nan. */

This patch removes this limitation.
msg65647 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2008-04-20 13:35
Sounds good.

What patch?  :-)
msg65648 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2008-04-20 13:37
Got it. Thanks.  This may also fix the failure to build cmath on alpha 
Tru64.
msg65649 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2008-04-20 16:14
Applied in r62418.

Thank you very much!
History
Date User Action Args
2022-04-11 14:56:33adminsetgithub: 46914
2008-04-20 16:14:25mark.dickinsonsetstatus: open -> closed
resolution: accepted
messages: + msg65649
2008-04-20 14:33:42mark.dickinsonsetpriority: normal
2008-04-20 13:37:44mark.dickinsonsetassignee: mark.dickinson
messages: + msg65648
2008-04-20 13:35:16mark.dickinsonsetnosy: + mark.dickinson
messages: + msg65647
2008-04-20 13:34:55ocean-citysetfiles: + cmathmodule.patch
keywords: + patch
2008-04-20 13:30:46ocean-citycreate