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 Jeffrey.Armstrong
Recipients Jeffrey.Armstrong
Date 2013-10-23.02:05:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382493901.92.0.326370616383.issue19356@psf.upfronthosting.co.za>
In-reply-to
Content
At Modules/_io/textio.c:285, one argument to _PyIncrementalNewlineDecoder_decode is named "_self."  The name "_self," however is a keyword on older Microsoft C compilers and certain other compilers attempting to maintain compatibility with Microsoft.  Renaming the argument to "myself" would fix the problem with certain compilers (Microsoft C, Open Watcom, possibly more).

Please note that this is not an issue with MSVC.
History
Date User Action Args
2013-10-23 02:05:01Jeffrey.Armstrongsetrecipients: + Jeffrey.Armstrong
2013-10-23 02:05:01Jeffrey.Armstrongsetmessageid: <1382493901.92.0.326370616383.issue19356@psf.upfronthosting.co.za>
2013-10-23 02:05:01Jeffrey.Armstronglinkissue19356 messages
2013-10-23 02:05:01Jeffrey.Armstrongcreate