summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-01-06 00:36:04 (GMT)
committerGitHub <noreply@github.com>2021-01-06 00:36:04 (GMT)
commitddb5e11683c8db9d2095f2f9406701443c4dc9b3 (patch)
tree1f6aade790390220158f852c9e78d9e58faa27d8 /Misc
parentf9949f82e17c88609adb53eff3a7d5cd63a645bd (diff)
downloadcpython-ddb5e11683c8db9d2095f2f9406701443c4dc9b3.zip
cpython-ddb5e11683c8db9d2095f2f9406701443c4dc9b3.tar.gz
cpython-ddb5e11683c8db9d2095f2f9406701443c4dc9b3.tar.bz2
bpo-24464: Deprecate sqlite3.enable_shared_cache (GH-24008)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-12-30-14-56-25.bpo-24464.vbNVHe.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-12-30-14-56-25.bpo-24464.vbNVHe.rst b/Misc/NEWS.d/next/Library/2020-12-30-14-56-25.bpo-24464.vbNVHe.rst
new file mode 100644
index 0000000..2039c1c
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-12-30-14-56-25.bpo-24464.vbNVHe.rst
@@ -0,0 +1,3 @@
+The undocumented built-in function ``sqlite3.enable_shared_cache`` is now
+deprecated, scheduled for removal in Python 3.12. Its use is strongly
+discouraged by the SQLite3 documentation. Patch by Erlend E. Aasland.