[Python-checkins] CVS: python/dist/src/Misc NEWS,1.196,1.197

M.-A. Lemburg lemburg@users.sourceforge.net
Tue, 31 Jul 2001 07:24:34 -0700


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

Modified Files:
	NEWS 
Log Message:
Add news items.



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.196
retrieving revision 1.197
diff -C2 -d -r1.196 -r1.197
*** NEWS	2001/07/28 14:44:03	1.196
--- NEWS	2001/07/31 14:24:31	1.197
***************
*** 9,12 ****
--- 9,23 ----
  Core
  
+ - Warnings about a mismatch in the Python API during extension import
+   now use the Python warning framework (which makes it possible to
+   write filters for these warnings).
+ 
+ - Two new APIs PyOS_snprintf() and PyOS_vsnprintf() were added
+   which provide a cross-platform implementations for the
+   relatively new snprintf()/vsnprintf() C lib APIs. In contrast to
+   the standard sprintf() and vsprintf() C lib APIs, these versions
+   apply bounds checking on the used buffer which enhances protection
+   against buffer overruns.
+ 
  Library