diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-06-20 13:20:30 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-06-20 13:20:30 (GMT) |
commit | 1fb8d83a540693b03f0bcf273a1b352d5b048157 (patch) | |
tree | 40fc7f501d49c19bccaa23972c4902492be674b2 /Doc/whatsnew | |
parent | 7c4e79c9eb82c7adabee7c4d6ce06b783d5ece76 (diff) | |
download | cpython-1fb8d83a540693b03f0bcf273a1b352d5b048157.zip cpython-1fb8d83a540693b03f0bcf273a1b352d5b048157.tar.gz cpython-1fb8d83a540693b03f0bcf273a1b352d5b048157.tar.bz2 |
[Bug #1504456] Mention xml -> xmlcore change
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/whatsnew25.tex | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/whatsnew/whatsnew25.tex b/Doc/whatsnew/whatsnew25.tex index a95c195..ee6ad07 100644 --- a/Doc/whatsnew/whatsnew25.tex +++ b/Doc/whatsnew/whatsnew25.tex @@ -1733,6 +1733,11 @@ Konqueror, and elinks. (Contributed by Oleg Broytmann and George Brandl.) % Patch #754022 +\item Python's standard library no longer includes +a package named \module{xml}; the library's XML-related package +has been renamed to \module{xmlcore}. This means +it will always be possible to import the standard library's +XML support whether or not the PyXML package is installed. \item The \module{xmlrpclib} module now supports returning \class{datetime} objects for the XML-RPC date type. Supply @@ -2348,6 +2353,10 @@ to allow only \code{'/'} and \code{'/RPC2'}. Setting \member{rpc_paths} to \code{None} or an empty tuple disables this path checking. +\item Library: the \module{xml} package has been renamed to \module{xmlcore}. +The PyXML package will therefore be \module{xml}, and the Python +distribution's code will always be accessible as \module{xmlcore}. + \item C API: Many functions now use \ctype{Py_ssize_t} instead of \ctype{int} to allow processing more data on 64-bit machines. Extension code may need to make the same change to avoid |