[Python-checkins] python/dist/src/Include pyerrors.h,2.58,2.59

doerwalter@users.sourceforge.net doerwalter@users.sourceforge.net
Mon, 02 Sep 2002 09:41:57 -0700


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

Modified Files:
	pyerrors.h 
Log Message:
Removed bogus PyUnicodeTranslateError_GetEncoding, as
UnicodeTranslateError doesn't have an encoding attribute.
(Spotted by Neal Norwitz)


Index: pyerrors.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/pyerrors.h,v
retrieving revision 2.58
retrieving revision 2.59
diff -C2 -d -r2.58 -r2.59
*** pyerrors.h	2 Sep 2002 13:14:30 -0000	2.58
--- pyerrors.h	2 Sep 2002 16:41:54 -0000	2.59
***************
*** 135,139 ****
  PyAPI_FUNC(PyObject *) PyUnicodeEncodeError_GetEncoding(PyObject *);
  PyAPI_FUNC(PyObject *) PyUnicodeDecodeError_GetEncoding(PyObject *);
- PyAPI_FUNC(PyObject *) PyUnicodeTranslateError_GetEncoding(PyObject *);
  
  /* get the object attribute */
--- 135,138 ----