[Python-checkins] python/dist/src/Misc NEWS,1.446,1.447
theller@users.sourceforge.net
theller@users.sourceforge.net
Mon, 29 Jul 2002 07:27:43 -0700
Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv15771/Misc
Modified Files:
NEWS
Log Message:
New functions for extension writers on Windows:
PyErr_SetExcFromWindowsErr(), PyErr_SetExcFromWindowsErrWithFilename().
Similar to PyErr_SetFromWindowsErrWithFilename() and
PyErr_SetFromWindowsErr(), but they allow to specify
the exception type to raise. Available on Windows.
See SF patch #576458.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.446
retrieving revision 1.447
diff -C2 -d -r1.446 -r1.447
*** NEWS 28 Jul 2002 16:33:45 -0000 1.446
--- NEWS 29 Jul 2002 14:27:40 -0000 1.447
***************
*** 381,384 ****
--- 381,390 ----
C API
+ - New functions PyErr_SetExcFromWindowsErr() and
+ PyErr_SetExcFromWindowsErrWithFilename(). Similar to
+ PyErr_SetFromWindowsErrWithFilename() and
+ PyErr_SetFromWindowsErr(), but they allow to specify
+ the exception type to raise. Available on Windows.
+
- Py_FatalError() is now declared as taking a const char* argument. It
was previously declared without const. This should not affect working