Issue #22591: Drop support of MS-DOS · python/cpython@b71c7dc (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit b71c7dc
Issue #22591: Drop support of MS-DOS
Drop support of MS-DOS, especially of the DJGPP compiler (MS-DOS port of GCC). Today is a sad day. Good bye MS-DOS, good bye my friend :'-(
File tree
1 file changed
lines changed
1 file changed
lines changed
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
@@ -7,15 +7,12 @@ extern "C" { | ||||
7 | 7 | |||
8 | 8 | /* Operating system dependencies */ | ||
9 | 9 | |||
10 | -/* Mod by chrish: QNX has WATCOM, but isn't DOS */ | |||
11 | -#if !defined(__QNX__) | |||
12 | -#if defined(MS_WINDOWS) | | defined(__BORLANDC__) | ||
10 | +#ifdef MS_WINDOWS | |||
13 | 11 | #define SEP L'\\' | ||
14 | 12 | #define ALTSEP L'/' | ||
15 | 13 | #define MAXPATHLEN 256 | ||
16 | 14 | #define DELIM L';' | ||
17 | 15 | #endif | ||
18 | -#endif | |||
19 | 16 | |||
20 | 17 | /* Filename separator */ | ||
21 | 18 | #ifndef SEP |