Add news items.

This commit is contained in:
Marc-André Lemburg 2001-07-31 14:24:31 +00:00
parent cecd9e0af3
commit 888fac020c
1 changed files with 11 additions and 0 deletions

View File

@ -8,6 +8,17 @@ Tests
Core 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 Library
- New function xml.sax.saxutils.quoteattr(): Quote an XML attribute - New function xml.sax.saxutils.quoteattr(): Quote an XML attribute