From: Guido van Rossum Date: Sun, 5 May 1991 20:07:59 +0000 (+0000) Subject: Pre-define MS-DOS separator X-Git-Tag: v0.9.8~955 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=175a9ea8c8794039c65ec2c160316791dad3633e;p=thirdparty%2FPython%2Fcpython.git Pre-define MS-DOS separator --- diff --git a/Python/import.c b/Python/import.c index d1da0015824f..67cd31e6ddc1 100644 --- a/Python/import.c +++ b/Python/import.c @@ -40,6 +40,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define SEP ':' #endif +#ifdef MSDOS +#define SEP '\\' +#endif + #ifndef SEP #define SEP '/' #endif