diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-06-30 15:26:10 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-06-30 15:26:10 (GMT) |
commit | 6238d2b024f061159b2613387ff700695c10deef (patch) | |
tree | 2c882431a5f1a348c7b4589f0e51a7e0d8bdef46 /Python/pythonrun.c | |
parent | adfa7409f8286bd9581d5decfac5a5edcc1aa7de (diff) | |
download | cpython-6238d2b024f061159b2613387ff700695c10deef.zip cpython-6238d2b024f061159b2613387ff700695c10deef.tar.gz cpython-6238d2b024f061159b2613387ff700695c10deef.tar.bz2 |
Patch #569753: Remove support for WIN16.
Rename all occurrences of MS_WIN32 to MS_WINDOWS.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 324bc89..63e0e8e 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -17,7 +17,7 @@ #include <signal.h> #endif -#ifdef MS_WIN32 +#ifdef MS_WINDOWS #undef BYTE #include "windows.h" #endif @@ -1272,14 +1272,14 @@ Py_FatalError(char *msg) #ifdef macintosh for (;;); #endif -#ifdef MS_WIN32 +#ifdef MS_WINDOWS OutputDebugString("Fatal Python error: "); OutputDebugString(msg); OutputDebugString("\n"); #ifdef _DEBUG DebugBreak(); #endif -#endif /* MS_WIN32 */ +#endif /* MS_WINDOWS */ abort(); } |