diff options
-rw-r--r-- | Python/import.c | 4 |
1 files changed, 4 insertions, 0 deletions
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 |