summaryrefslogtreecommitdiffstats
path: root/Misc
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 /Misc
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 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-05-09-12-38-40.bpo-30262.Tu74ak.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-05-09-12-38-40.bpo-30262.Tu74ak.rst b/Misc/NEWS.d/next/Library/2019-05-09-12-38-40.bpo-30262.Tu74ak.rst
new file mode 100644
index 0000000..059bd71
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-05-09-12-38-40.bpo-30262.Tu74ak.rst
@@ -0,0 +1,2 @@
+The ``Cache`` and ``Statement`` objects of the :mod:`sqlite3` module are not
+exposed to the user. Patch by Aviv Palivoda.