diff options
author | Raymond Hettinger <python@rcn.com> | 2010-09-05 08:54:32 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-09-05 08:54:32 (GMT) |
commit | d881f31693f8fa84fe0ae098dda4cc8eae54133c (patch) | |
tree | 09619249818d7620925f958c74e25a511f7a3e10 /Doc/whatsnew | |
parent | bcbd69666b8716fcf7e880e659236b702d281b26 (diff) | |
download | cpython-d881f31693f8fa84fe0ae098dda4cc8eae54133c.zip cpython-d881f31693f8fa84fe0ae098dda4cc8eae54133c.tar.gz cpython-d881f31693f8fa84fe0ae098dda4cc8eae54133c.tar.bz2 |
Fill-in sqlite3 stubs
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 9132d86..21b2b75 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -305,16 +305,17 @@ New, Improved, and Deprecated Modules (Added by Antoine Pitrou; :issue:`8524`.) -* The :mod:`sqlite3` module has some new features: +* The :mod:`sqlite3` module has two new capabilities. - * XXX *enable_load_extension* + The :attr:`Connection.in_transit` attribute is true if there is an + active transaction for uncommitted changes. - * XXX *load_extension* + The :meth:`Connection.enable_load_extension` and + :meth:`Connection.load_extension` methods allows you to load SQLite extensions + from ".so" files. One well-known extension is the fulltext-search extension + distributed with SQLite. - * New :class:`~sqlite3.Connection` attribute - :attr:`~sqlite3.Connection.in_transaction` is :const:`True` when there - are uncommitted changes, and :const:`False` otherwise. (Contributed - by R. David Murray and Shashwat Anand, :issue:`8845`.) + (Contributed by R. David Murray and Shashwat Anand, :issue:`8845`.) * The :mod:`ssl` module has a new class, :class:`~ssl.SSLContext` which serves as a container for various persistent SSL data, such as protocol |