From eb4361af6cd3770c18db9307f0b4112c72679225 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 5 May 1991 20:14:35 +0000 Subject: Defined path delimiter for MS-DOS as semicolon --- Python/sysmodule.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Python/sysmodule.c b/Python/sysmodule.c index ececf72..35550ad 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 -- cgit v0.12