summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMarc-André Lemburg <mal@egenix.com>2001-07-31 14:42:42 (GMT)
committerMarc-André Lemburg <mal@egenix.com>2001-07-31 14:42:42 (GMT)
commitd627791cf1a6eceed1e2745eca05ce5628a03f56 (patch)
tree9831ecc940809e961277476e803814b174e86e20 /Misc
parent48dbfe9aa2054e92211e7b3e92508aafe8f36fa0 (diff)
downloadcpython-d627791cf1a6eceed1e2745eca05ce5628a03f56.zip
cpython-d627791cf1a6eceed1e2745eca05ce5628a03f56.tar.gz
cpython-d627791cf1a6eceed1e2745eca05ce5628a03f56.tar.bz2
Moved the news items about C API topics down to the C API section.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS24
1 files changed, 12 insertions, 12 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 51b211d..db4fbde 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,18 @@ Core
now use the Python warning framework (which makes it possible to
write filters for these warnings).
+Library
+
+- New function xml.sax.saxutils.quoteattr(): Quote an XML attribute
+ value using the minimal quoting required for the value; more
+ reliable than using xml.sax.saxutils.escape() for attribute values.
+
+- Readline completion support for cmd.Cmd was added.
+
+New platforms
+
+C API
+
- 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
@@ -26,18 +38,6 @@ Core
sure to check the Unicode width compatibility in their extensions by
using at least one of the mangled Unicode APIs in the extension.
-Library
-
-- New function xml.sax.saxutils.quoteattr(): Quote an XML attribute
- value using the minimal quoting required for the value; more
- reliable than using xml.sax.saxutils.escape() for attribute values.
-
-- Readline completion support for cmd.Cmd was added.
-
-New platforms
-
-C API
-
What's New in Python 2.2a1?
===========================