summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorAviv Palivoda <palaviv@gmail.com>2019-05-09 18:05:45 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2019-05-09 18:05:45 (GMT)
commite6576248e5174ca5daa362cfd610c07e7eb3a2ae (patch)
treee8353644dade4c676dcc1fff0575d8cd11bb3493 /Doc/whatsnew
parentf00828a742d2e88c910bdfd00f08fcd998554ba5 (diff)
downloadcpython-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.rst4
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
=====================