diff options
author | Guido van Rossum <guido@python.org> | 1993-07-09 10:51:31 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-07-09 10:51:31 (GMT) |
commit | e22e6442b748f5f4703cb6f221e1e10b320d0295 (patch) | |
tree | b464f80ce6b88f81a4b79cd3270f7990ee14ef4e /Modules/config.c.in | |
parent | d05eb8b0fc24c518abcd582e875393886f37689b (diff) | |
download | cpython-e22e6442b748f5f4703cb6f221e1e10b320d0295.zip cpython-e22e6442b748f5f4703cb6f221e1e10b320d0295.tar.gz cpython-e22e6442b748f5f4703cb6f221e1e10b320d0295.tar.bz2 |
* config.c: different default PYTHONPATH for MS-DOS
* timemodule.c: change #ifdef TURBO_C into #ifdef MSDOS
* posixmodule.c: MSDOS changes by Marcel van der Peijl (Digicash)
* stropmodule.c: use C isspace(c) to test for whitespace; add
whitespace, lowercase and uppercase variables to the module.
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index fe48023..692827e 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -141,7 +141,7 @@ donecalls() #ifdef MSDOS /* In MS-DOS, the delimiter is a semicolon */ -#define PYTHONPATH ".;C\\python\\lib" +#define PYTHONPATH ".;..\\lib;\\python\\lib" #endif /* MSDOS */ #ifndef PYTHONPATH |