diff options
author | Guido van Rossum <guido@python.org> | 1991-05-05 20:14:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-05-05 20:14:35 (GMT) |
commit | eb4361af6cd3770c18db9307f0b4112c72679225 (patch) | |
tree | 4e69231a02653b8cdcada6e8a7b3d1321186cbf7 /Python/sysmodule.c | |
parent | 541c8c0b2ef043e096e2e9f03136b20ab6ae5887 (diff) | |
download | cpython-eb4361af6cd3770c18db9307f0b4112c72679225.zip cpython-eb4361af6cd3770c18db9307f0b4112c72679225.tar.gz cpython-eb4361af6cd3770c18db9307f0b4112c72679225.tar.bz2 |
Defined path delimiter for MS-DOS as semicolon
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 4 |
1 files changed, 4 insertions, 0 deletions
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 |