Kaydet (Commit) c8ce571c authored tarafından Guido van Rossum's avatar Guido van Rossum

Rationalized PC compiler defines: require MS_WINDOWS or __BORLANDC__

or __WATCOMC__.  Add ALTSEP for PC filesystems.
üst 1550ff72
...@@ -37,8 +37,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ...@@ -37,8 +37,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define DELIM '\n' #define DELIM '\n'
#endif #endif
#if defined(MSDOS) || defined(NT) || defined(__BORLANDC__) || defined(__WATCOMC__) #if defined(MS_WINDOWS) || defined(__BORLANDC__) || defined(__WATCOMC__)
#define SEP '\\' #define SEP '\\'
#define ALTSEP '/'
#define MAXPATHLEN 256 #define MAXPATHLEN 256
#define DELIM ';' #define DELIM ';'
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment