[Python-checkins] python/dist/src/Include listobject.h,2.31,2.32

nnorwitz at users.sourceforge.net nnorwitz at users.sourceforge.net
Mon Aug 2 00:45:30 CEST 2004


Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14481/Include

Modified Files:
	listobject.h 
Log Message:
Fix typo in comment

Index: listobject.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/listobject.h,v
retrieving revision 2.31
retrieving revision 2.32
diff -C2 -d -r2.31 -r2.32
*** listobject.h	29 Jul 2004 12:40:22 -0000	2.31
--- listobject.h	1 Aug 2004 22:45:27 -0000	2.32
***************
*** 22,26 ****
  typedef struct {
      PyObject_VAR_HEAD
!     /* Vector of pointers to list elements.  list[0] is ob_item{0], etc. */
      PyObject **ob_item;
  
--- 22,26 ----
  typedef struct {
      PyObject_VAR_HEAD
!     /* Vector of pointers to list elements.  list[0] is ob_item[0], etc. */
      PyObject **ob_item;
  



More information about the Python-checkins mailing list