diff options
author | Marc-André Lemburg <mal@egenix.com> | 2001-07-31 14:24:31 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2001-07-31 14:24:31 (GMT) |
commit | 888fac020c6981e2ee26850e0e8e959ef8a1fec4 (patch) | |
tree | d2f34a8334b3d9f9a46348e099f5326f3de2fe0a /Misc | |
parent | cecd9e0af3b26370cc11d1dfae7178fbeb86b5c1 (diff) | |
download | cpython-888fac020c6981e2ee26850e0e8e959ef8a1fec4.zip cpython-888fac020c6981e2ee26850e0e8e959ef8a1fec4.tar.gz cpython-888fac020c6981e2ee26850e0e8e959ef8a1fec4.tar.bz2 |
Add news items.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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 |