[Python-checkins] r76742 - python/branches/release26-maint

mark.dickinson python-checkins at python.org
Thu Dec 10 11:39:49 CET 2009


Author: mark.dickinson
Date: Thu Dec 10 11:39:49 2009
New Revision: 76742

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


Modified:
   python/branches/release26-maint/   (props changed)


More information about the Python-checkins mailing list