diff options
author | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2009-06-28 10:23:00 (GMT) |
---|---|---|
committer | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2009-06-28 10:23:00 (GMT) |
commit | a3c560907972822a661b4fa933ac9637145c5048 (patch) | |
tree | ad93893920eba4603c1d54dc86cec1a4c9a4aad7 /PC | |
parent | ecb4f953dd8fdfc17de759dcd3bf737debcb7284 (diff) | |
download | cpython-a3c560907972822a661b4fa933ac9637145c5048.zip cpython-a3c560907972822a661b4fa933ac9637145c5048.tar.gz cpython-a3c560907972822a661b4fa933ac9637145c5048.tar.bz2 |
Issue #4856: Remove checks for win NT.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/pyconfig.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 55424f2..d4524c8 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -95,12 +95,6 @@ WIN32 is still required for the locale module. #endif #ifdef MS_WINCE -/* Python uses GetVersion() to distinguish between - * Windows NT and 9x/ME where OS Unicode support is concerned. - * Windows CE supports Unicode in the same way as NT so we - * define the missing GetVersion() accordingly. - */ -#define GetVersion() (4) /* Windows CE does not support environment variables */ #define getenv(v) (NULL) #define environ (NULL) |