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 larry
Recipients Arfrever, benjamin.peterson, brett.cannon, georg.brandl, kristjan.jonsson, larry, loewis, pitrou, rhettinger, serhiy.storchaka, skrah, taleinat, vstinner
Date 2014-02-26.18:23:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1393439020.9.0.0732766529279.issue20440@psf.upfronthosting.co.za>
In-reply-to
Content
> Barring c++, are we using any C compilers that don't support inlines?

CPython advertises itself as C89 compliant, and C89 doesn't have inlines.  You need to go to C99 to get inlines.

And before you ask--yes, we support a compiler that is not C99 compliant: Microsoft Visual C++.  I'm pretty sure it does have inline support though.

It's possible that every platform officially supported by CPython has a C compiler that supports inlines.  I'm pretty sure people compile Python on unsupported platforms whose compilers don't have inlines (e.g. OS/2).  Anyway, you'd have to get Guido to agree to breaking C89 compatibility, it's not something you could do locally on this patch without (most likely) a big drawn-out discussion on python-dev.
History
Date User Action Args
2014-02-26 18:23:40larrysetrecipients: + larry, loewis, brett.cannon, georg.brandl, rhettinger, pitrou, kristjan.jonsson, vstinner, taleinat, benjamin.peterson, Arfrever, skrah, serhiy.storchaka
2014-02-26 18:23:40larrysetmessageid: <1393439020.9.0.0732766529279.issue20440@psf.upfronthosting.co.za>
2014-02-26 18:23:40larrylinkissue20440 messages
2014-02-26 18:23:40larrycreate