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 kakkoko
Recipients kakkoko, skrah, vstinner
Date 2014-09-03.09:15:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1409735755.32.0.694960538893.issue22330@psf.upfronthosting.co.za>
In-reply-to
Content
You can find PyOS_stricmp from here:
  https://docs.python.org/3/c-api/conversion.html

And PyOS_stricmp is PyOS_mystricmp when MS_WINDOWS is not defined.

Include/pystrcmp.h:
#ifdef MS_WINDOWS
#define PyOS_strnicmp strnicmp
#define PyOS_stricmp stricmp
#else
#define PyOS_strnicmp PyOS_mystrnicmp
#define PyOS_stricmp PyOS_mystricmp
#endif
History
Date User Action Args
2014-09-03 09:15:55kakkokosetrecipients: + kakkoko, vstinner, skrah
2014-09-03 09:15:55kakkokosetmessageid: <1409735755.32.0.694960538893.issue22330@psf.upfronthosting.co.za>
2014-09-03 09:15:55kakkokolinkissue22330 messages
2014-09-03 09:15:55kakkokocreate