diff options
author | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2009-06-28 11:07:03 (GMT) |
---|---|---|
committer | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2009-06-28 11:07:03 (GMT) |
commit | 892a37aff15e85a02492955e9281127cf20afbaf (patch) | |
tree | 08b60b5f0f3a092177d139be5e7174d6316caef1 /PC | |
parent | 95c460187043204823d11dbe2d06dae823d024dd (diff) | |
download | cpython-892a37aff15e85a02492955e9281127cf20afbaf.zip cpython-892a37aff15e85a02492955e9281127cf20afbaf.tar.gz cpython-892a37aff15e85a02492955e9281127cf20afbaf.tar.bz2 |
Merged revisions 73603 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73603 | hirokazu.yamamoto | 2009-06-28 19:23:00 +0900 | 1 line
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 c90644f..fb2aaf6 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) |