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 belopolsky
Recipients belopolsky
Date 2009-01-02.07:30:38
SpamBayes Score 3.8147547e-05
Marked as misclassified No
Message-id <1230881446.85.0.664120268563.issue4805@psf.upfronthosting.co.za>
In-reply-to
Content
A related question discussed on python-dev is whether extern "C" {} 
wrappers should ever be used in .c files.  I argue that the answer is "no" 
even if C++ compilability is desired.

The new patch eliminates several uses of extern "C" {} in .c files while 
preserving C++ compilability.  This is achieved by including proper header 
files instead of declaring external functions in .c files and in some 
cases adding declarations of functions that are used outside of the files 
they are defined in in the appropriate header files.
History
Date User Action Args
2009-01-02 07:30:47belopolskysetrecipients: + belopolsky
2009-01-02 07:30:46belopolskysetmessageid: <1230881446.85.0.664120268563.issue4805@psf.upfronthosting.co.za>
2009-01-02 07:30:46belopolskylinkissue4805 messages
2009-01-02 07:30:45belopolskycreate