diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-09-17 13:04:53 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-09-17 13:04:53 (GMT) |
commit | b34c3f402405645962831ea60d49c247db7ecaec (patch) | |
tree | e29126a28965beb24cecc1d53f10b438b744eaaf /Doc/whatsnew | |
parent | 24c9021ebf6c22e0fff0b4e61d45bffe5e1d8dae (diff) | |
download | cpython-b34c3f402405645962831ea60d49c247db7ecaec.zip cpython-b34c3f402405645962831ea60d49c247db7ecaec.tar.gz cpython-b34c3f402405645962831ea60d49c247db7ecaec.tar.bz2 |
Note sqlite3 version; move item
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/2.6.rst | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 0038623..04a54a2 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -2295,9 +2295,6 @@ changes, or look through the Subversion logs for all the details. will now ignore exceptions triggered while evaluating a name. (Fixed by Lorenz Quack; :issue:`2250`.) -* The :mod:`sha` module has been deprecated; use the :mod:`hashlib` module - instead. - * The :mod:`sched` module's :class:`scheduler` instances now have a read-only :attr:`queue` attribute that returns the contents of the scheduler's queue, represented as a list of @@ -2315,6 +2312,9 @@ changes, or look through the Subversion logs for all the details. * The :mod:`sets` module has been deprecated; it's better to use the built-in :class:`set` and :class:`frozenset` types. +* The :mod:`sha` module has been deprecated; use the :mod:`hashlib` module + instead. + * The :func:`shutil.copytree` function now has an optional *ignore* argument that takes a callable object. This callable will receive each directory path and a list of the directory's contents, and returns a list of names that @@ -2400,6 +2400,10 @@ changes, or look through the Subversion logs for all the details. (Contributed by Pedro Werneck and Jeffrey Yasskin; :issue:`742598`, :issue:`1193577`.) +* The :mod:`sqlite3` module, maintained by Gerhard Haering, + has been updated from version 2.3.2 in Python 2.5 to + version 2.4.1. + * The :mod:`struct` module now supports the C99 :ctype:`_Bool` type, using the format character ``'?'``. (Contributed by David Remahl.) |