]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Pre-define MS-DOS separator
authorGuido van Rossum <guido@python.org>
Sun, 5 May 1991 20:07:59 +0000 (20:07 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 5 May 1991 20:07:59 +0000 (20:07 +0000)
Python/import.c

index d1da0015824f7c3ec28df6a69653e98f46e710fe..67cd31e6ddc1642bb549c2eb18452becbe1f3f69 100644 (file)
@@ -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