diff options
author | Aviv Palivoda <palaviv@gmail.com> | 2019-05-09 18:05:45 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2019-05-09 18:05:45 (GMT) |
commit | e6576248e5174ca5daa362cfd610c07e7eb3a2ae (patch) | |
tree | e8353644dade4c676dcc1fff0575d8cd11bb3493 /Doc/whatsnew | |
parent | f00828a742d2e88c910bdfd00f08fcd998554ba5 (diff) | |
download | cpython-e6576248e5174ca5daa362cfd610c07e7eb3a2ae.zip cpython-e6576248e5174ca5daa362cfd610c07e7eb3a2ae.tar.gz cpython-e6576248e5174ca5daa362cfd610c07e7eb3a2ae.tar.bz2 |
bpo-30262: Don't expose private objects in sqlite3 (GH-1440)
The Cache and Statement objects are undocumented and implementation
details of the sqlite3 module.
They aren't usable from pure Python code.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index d21a4c7..49a6cb0 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -796,6 +796,10 @@ The following features and APIs have been removed from Python 3.8: * "unicode_internal" codec is removed. (Contributed by Inada Naoki in :issue:`36297`.) +* The ``Cache`` and ``Statement`` objects of the :mod:`sqlite3` module are not + exposed to the user. + (Contributed by Aviv Palivoda in :issue:`30262`.) + Porting to Python 3.8 ===================== |