From: Guido van Rossum Date: Sun, 5 May 1991 20:14:35 +0000 (+0000) Subject: Defined path delimiter for MS-DOS as semicolon X-Git-Tag: v0.9.8~949 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb4361af6cd3770c18db9307f0b4112c72679225;p=thirdparty%2FPython%2Fcpython.git Defined path delimiter for MS-DOS as semicolon --- diff --git a/Python/sysmodule.c b/Python/sysmodule.c index ececf72f37c7..35550ad36414 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -49,6 +49,10 @@ Data members: #define DELIM ' ' #endif +#ifdef MSDOS +#define DELIM ';' +#endif + #ifndef DELIM #define DELIM ':' #endif