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 Nicholas.DiPiazza
Recipients Nicholas.DiPiazza, Scott.Rostrup, jbinder, terry.reedy
Date 2012-05-29.20:14:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1338322481.6.0.862639495847.issue8548@psf.upfronthosting.co.za>
In-reply-to
Content
In Python3.1.2-src/Modules/main.c

I actually had to use this to get it to work:

#if defined(MS_WINDOWS) || defined(__CYGWIN__)
#include <windows.h>
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
#ifndef HAVE_FCNTL_H
#define PATH_MAX MAXPATHLEN
#endif
#endif
History
Date User Action Args
2012-05-29 20:14:41Nicholas.DiPiazzasetrecipients: + Nicholas.DiPiazza, terry.reedy, jbinder, Scott.Rostrup
2012-05-29 20:14:41Nicholas.DiPiazzasetmessageid: <1338322481.6.0.862639495847.issue8548@psf.upfronthosting.co.za>
2012-05-29 20:14:41Nicholas.DiPiazzalinkissue8548 messages
2012-05-29 20:14:40Nicholas.DiPiazzacreate