[Python-checkins] CVS: python/dist/src/Include stringobject.h,2.26,2.27

Martin v. L?wis loewis@users.sourceforge.net
Thu, 24 May 2001 09:56:37 -0700


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

Modified Files:
	stringobject.h 
Log Message:
Patch #424335: Implement string_richcompare, remove string_compare.
               Use new _PyString_Eq in lookdict_string.


Index: stringobject.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/stringobject.h,v
retrieving revision 2.26
retrieving revision 2.27
diff -C2 -r2.26 -r2.27
*** stringobject.h	2001/05/15 11:58:05	2.26
--- stringobject.h	2001/05/24 16:56:35	2.27
***************
*** 59,62 ****
--- 59,63 ----
  extern DL_IMPORT(void) PyString_ConcatAndDel(PyObject **, PyObject *);
  extern DL_IMPORT(int) _PyString_Resize(PyObject **, int);
+ extern DL_IMPORT(int) _PyString_Eq(PyObject *, PyObject*);
  extern DL_IMPORT(PyObject *) PyString_Format(PyObject *, PyObject *);
  extern DL_IMPORT(PyObject *) _PyString_FormatLong(PyObject*, int, int,