[Python-checkins] CVS: python/dist/src/Include pyerrors.h,2.43,2.44

Guido van Rossum gvanrossum@users.sourceforge.net
Wed, 28 Feb 2001 13:44:22 -0800


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

Modified Files:
	pyerrors.h 
Log Message:
Add declaration for PyErr_WarnExplicit().


Index: pyerrors.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/pyerrors.h,v
retrieving revision 2.43
retrieving revision 2.44
diff -C2 -r2.43 -r2.44
*** pyerrors.h	2001/02/28 17:47:12	2.43
--- pyerrors.h	2001/02/28 21:44:20	2.44
***************
*** 95,98 ****
--- 95,100 ----
  /* Issue a warning or exception */
  extern DL_IMPORT(int) PyErr_Warn(PyObject *, char *);
+ extern DL_IMPORT(int) PyErr_WarnExplicit(PyObject *, char *,
+ 					 char *, int, char *, PyObject *);
  
  /* In sigcheck.c or signalmodule.c */