From: Marc-André Lemburg Date: Tue, 31 Jul 2001 14:24:31 +0000 (+0000) Subject: Add news items. X-Git-Tag: v2.2a3~898 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=888fac020c6981e2ee26850e0e8e959ef8a1fec4;p=thirdparty%2FPython%2Fcpython.git Add news items. --- diff --git a/Misc/NEWS b/Misc/NEWS index 290d63758122..ac32e43bea7a 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -8,6 +8,17 @@ Tests 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 - New function xml.sax.saxutils.quoteattr(): Quote an XML attribute