diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-01 01:03:20 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-01 01:03:20 (GMT) |
commit | 9f6d4ceb43583885cd090ff6adb87d31b3ac9c99 (patch) | |
tree | a6a48b9fbfecd28e6d6f52864f5ee74c6a7dac81 /PC | |
parent | 6b29dd05c8fff4fc69ab4d68baef86fb7e91548c (diff) | |
download | cpython-9f6d4ceb43583885cd090ff6adb87d31b3ac9c99.zip cpython-9f6d4ceb43583885cd090ff6adb87d31b3ac9c99.tar.gz cpython-9f6d4ceb43583885cd090ff6adb87d31b3ac9c99.tar.bz2 |
Although pyconfig.h claims that WIN32 is obsolete it is still required for the locale module. locale.getdefaultlocale() fails silently w/o the WIN32 macro.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/pyconfig.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 27cb17f..9ab20f7 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -23,9 +23,11 @@ compiler specific". Therefore, these should be very rare. NOTE: The following symbols are deprecated: -NT, WIN32, USE_DL_EXPORT, USE_DL_IMPORT, DL_EXPORT, DL_IMPORT +NT, USE_DL_EXPORT, USE_DL_IMPORT, DL_EXPORT, DL_IMPORT MS_CORE_DLL. +WIN32 is still required for the locale module. + */ #ifdef _WIN32_WCE |