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 Kay.Hayen
Recipients Kay.Hayen, brian.curtin, eudoxos, loewis, mark.dickinson, petri.lehtinen, pokulo, schmir
Date 2016-08-11.18:48:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1470941334.11.0.861517894646.issue11566@psf.upfronthosting.co.za>
In-reply-to
Content
This also affects Python2.7.12 on Windows with latest MinGW. I think something similar needs to be added for GCC version check:

/* VS 2010 and above already defines hypot as _hypot */
#if _MSC_VER < 1600
#define hypot _hypot
#endif

Not sure which gcc version first had that, but 6.1 definitely does.

Yours,
Kay
History
Date User Action Args
2016-08-11 18:48:54Kay.Hayensetrecipients: + Kay.Hayen, loewis, mark.dickinson, schmir, brian.curtin, petri.lehtinen, eudoxos, pokulo
2016-08-11 18:48:54Kay.Hayensetmessageid: <1470941334.11.0.861517894646.issue11566@psf.upfronthosting.co.za>
2016-08-11 18:48:54Kay.Hayenlinkissue11566 messages
2016-08-11 18:48:54Kay.Hayencreate