[Python-checkins] r70502 - in python/branches/release26-maint: Objects/unicodeobject.c

hirokazu.yamamoto python-checkins at python.org
Sat Mar 21 14:04:41 CET 2009


Author: hirokazu.yamamoto
Date: Sat Mar 21 14:04:41 2009
New Revision: 70502

Log:
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.
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Objects/unicodeobject.c

Modified: python/branches/release26-maint/Objects/unicodeobject.c
==============================================================================
--- python/branches/release26-maint/Objects/unicodeobject.c	(original)
+++ python/branches/release26-maint/Objects/unicodeobject.c	Sat Mar 21 14:04:41 2009
@@ -3737,7 +3737,7 @@
 
 /* --- MBCS codecs for Windows -------------------------------------------- */
 
-#if SIZEOF_INT < SIZEOF_SSIZE_T
+#if SIZEOF_INT < SIZEOF_SIZE_T
 #define NEED_RETRY
 #endif
 


More information about the Python-checkins mailing list