From 175a9ea8c8794039c65ec2c160316791dad3633e Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 5 May 1991 20:07:59 +0000 Subject: Pre-define MS-DOS separator --- Python/import.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Python/import.c b/Python/import.c index d1da001..67cd31e 100644 --- a/Python/import.c +++ b/Python/import.c @@ -40,6 +40,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define SEP ':' #endif +#ifdef MSDOS +#define SEP '\\' +#endif + #ifndef SEP #define SEP '/' #endif -- cgit v0.12