From: Hirokazu Yamamoto Date: Sat, 21 Mar 2009 13:37:43 +0000 (+0000) Subject: Merged revisions 70503 via svnmerge from X-Git-Tag: 3.0~303 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=915ce33b76a7108510f9720b06b68bf0a393f612;p=thirdparty%2FPython%2Fcpython.git Merged revisions 70503 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r70503 | hirokazu.yamamoto | 2009-03-21 22:23:27 +0900 | 9 lines Merged revisions 70499 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70499 | hirokazu.yamamoto | 2009-03-21 19:32:52 +0900 | 1 line There is no macro named SIZEOF_SSIZE_T. Should use SIZEOF_SIZE_T instead. ........ ................ --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 21917f2a6ed3..7c26dce04f44 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -3955,7 +3955,7 @@ PyObject *PyUnicode_AsASCIIString(PyObject *unicode) /* --- MBCS codecs for Windows -------------------------------------------- */ -#if SIZEOF_INT < SIZEOF_SSIZE_T +#if SIZEOF_INT < SIZEOF_SIZE_T #define NEED_RETRY #endif