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 serhiy.storchaka
Recipients neologix, pitrou, python-dev, serhiy.storchaka, vstinner
Date 2015-03-24.10:12:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1427191970.92.0.557792302199.issue23753@psf.upfronthosting.co.za>
In-reply-to
Content
> -#if defined(HAVE_STAT) && !defined(MS_WINDOWS)

This doesn't look correct. An equivalent replacement is 

-#if defined(HAVE_STAT) && !defined(MS_WINDOWS)
+#if !defined(MS_WINDOWS)
History
Date User Action Args
2015-03-24 10:12:50serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou, vstinner, neologix, python-dev
2015-03-24 10:12:50serhiy.storchakasetmessageid: <1427191970.92.0.557792302199.issue23753@psf.upfronthosting.co.za>
2015-03-24 10:12:50serhiy.storchakalinkissue23753 messages
2015-03-24 10:12:50serhiy.storchakacreate