From: Mark Dickinson Date: Thu, 10 Dec 2009 10:39:49 +0000 (+0000) Subject: Blocked revisions 76740 via svnmerge X-Git-Tag: v2.6.5rc1~291 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=887febd4533e40e7632a31d70db492e7717a4749;p=python Blocked revisions 76740 via svnmerge ........ r76740 | mark.dickinson | 2009-12-10 10:36:32 +0000 (Thu, 10 Dec 2009) | 8 lines Replace the size check for PyMem_MALLOC and PyMem_REALLOC with an almost equivalent[*] check that doesn't produce compiler warnings about a 'x < 0' check on an unsigned type. [*] it's equivalent for inputs of type size_t or Py_ssize_t, or any smaller unsigned or signed integer type. ........ ---