]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Defined path delimiter for MS-DOS as semicolon
authorGuido van Rossum <guido@python.org>
Sun, 5 May 1991 20:14:35 +0000 (20:14 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 5 May 1991 20:14:35 +0000 (20:14 +0000)
Python/sysmodule.c

index ececf72f37c78a9f33ded93d4f626c9c8c89bb47..35550ad3641401a725c4b42f630b32f623696b3e 100644 (file)
@@ -49,6 +49,10 @@ Data members:
 #define DELIM ' '
 #endif
 
+#ifdef MSDOS
+#define DELIM ';'
+#endif
+
 #ifndef DELIM
 #define DELIM ':'
 #endif