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

jhylton at users.sourceforge.net jhylton at users.sourceforge.net
Fri Dec 26 12:17:52 EST 2003


Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1:/tmp/cvs-serv17110

Modified Files:
	dictobject.h 
Log Message:
Fix name problem in previous checkin: Dict not List


Index: dictobject.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/dictobject.h,v
retrieving revision 2.31
retrieving revision 2.32
diff -C2 -d -r2.31 -r2.32
*** dictobject.h	26 Dec 2003 00:20:53 -0000	2.31
--- dictobject.h	26 Dec 2003 17:17:49 -0000	2.32
***************
*** 88,92 ****
  
  #define PyDict_Check(op) PyObject_TypeCheck(op, &PyDict_Type)
! #define PyList_CheckExact(op) ((op)->ob_type == &PyDict_Type)
  
  PyAPI_FUNC(PyObject *) PyDict_New(void);
--- 88,92 ----
  
  #define PyDict_Check(op) PyObject_TypeCheck(op, &PyDict_Type)
! #define PyDict_CheckExact(op) ((op)->ob_type == &PyDict_Type)
  
  PyAPI_FUNC(PyObject *) PyDict_New(void);





More information about the Python-checkins mailing list