[Python-3000-checkins] r56948 - python/branches/py3k-buffer/Include/object.h

neal.norwitz python-3000-checkins at python.org
Sun Aug 12 06:48:44 CEST 2007


Author: neal.norwitz
Date: Sun Aug 12 06:48:44 2007
New Revision: 56948

Modified:
   python/branches/py3k-buffer/Include/object.h
Log:
Fix compiler warning (real problem on 64-bit).

Modified: python/branches/py3k-buffer/Include/object.h
==============================================================================
--- python/branches/py3k-buffer/Include/object.h	(original)
+++ python/branches/py3k-buffer/Include/object.h	Sun Aug 12 06:48:44 2007
@@ -151,7 +151,7 @@
         Py_ssize_t *shape;
         Py_ssize_t *strides;
         Py_ssize_t *suboffsets;
-        int itemsize;
+        Py_ssize_t itemsize;
         void *internal;
 } PyBuffer;
 


More information about the Python-3000-checkins mailing list