[Python-checkins] python/dist/src/Include classobject.h,2.42,2.43
tim_one@users.sourceforge.net
tim_one@users.sourceforge.net
2003年4月08日 11:47:24 -0700
Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1:/tmp/cvs-serv32665/Python/Include
Modified Files:
classobject.h
Log Message:
Typo repair.
Index: classobject.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/classobject.h,v
retrieving revision 2.42
retrieving revision 2.43
diff -C2 -d -r2.42 -r2.43
*** classobject.h 7 Apr 2003 17:51:58 -0000 2.42
--- classobject.h 8 Apr 2003 18:47:21 -0000 2.43
***************
*** 59,66 ****
* The point of this routine is that it never calls arbitrary Python
* code, so is always "safe": all it does is dict lookups. The function
! * can't fail, never sets an exceptionm, and NULL is not an error (it just
* means "not found").
*/
! PyAPI_FUNC(PyObject *)_PyInstance_Lookup(PyObject *pinst, PyObject *name);
/* Macros for direct access to these values. Type checks are *not*
--- 59,66 ----
* The point of this routine is that it never calls arbitrary Python
* code, so is always "safe": all it does is dict lookups. The function
! * can't fail, never sets an exception, and NULL is not an error (it just
* means "not found").
*/
! PyAPI_FUNC(PyObject *) _PyInstance_Lookup(PyObject *pinst, PyObject *name);
/* Macros for direct access to these values. Type checks are *not*