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 Sander Vrijders
Recipients Sander Vrijders
Date 2017-01-09.14:28:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1483972129.08.0.0486776479108.issue29215@psf.upfronthosting.co.za>
In-reply-to
Content
I am writing C90 compliant code and am wrapping my C headers with SWIG, which includes python3.6m/pyport.h. I've told my compiler to report all warnings as errors. Compilation fails with the following error:

```
/usr/include/python3.6m/pyport.h:40:1: error: C++ style comments are not allowed in ISO C90
 // long long is required. Ensure HAVE_LONG_LONG is defined for compatibility.
```

I believe the comment was added by the patch of a previous bug (see https://hg.python.org/cpython/rev/4745d801cae2). The solution would be to change this comment to a C90 comment.
History
Date User Action Args
2017-01-09 14:28:49Sander Vrijderssetrecipients: + Sander Vrijders
2017-01-09 14:28:49Sander Vrijderssetmessageid: <1483972129.08.0.0486776479108.issue29215@psf.upfronthosting.co.za>
2017-01-09 14:28:48Sander Vrijderslinkissue29215 messages
2017-01-09 14:28:48Sander Vrijderscreate