summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorgescheit <gescheit@yandex-team.ru>2019-07-13 03:15:49 (GMT)
committerBenjamin Peterson <benjamin@python.org>2019-07-13 03:15:48 (GMT)
commitb9a0376b0dedf16a2f82fa43d851119d1f7a2707 (patch)
treee452ac1e4dbc7c1dd0624a597e06fd6468a3cd69 /Misc/NEWS.d
parent0827064c955f88df8ba5621d8e3d81be3cfc26a9 (diff)
downloadcpython-b9a0376b0dedf16a2f82fa43d851119d1f7a2707.zip
cpython-b9a0376b0dedf16a2f82fa43d851119d1f7a2707.tar.gz
cpython-b9a0376b0dedf16a2f82fa43d851119d1f7a2707.tar.bz2
closes bpo-37347: Fix refcount problem in sqlite3. (GH-14268)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2019-06-20-14-23-48.bpo-37347.Gf9yYI.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-06-20-14-23-48.bpo-37347.Gf9yYI.rst b/Misc/NEWS.d/next/Library/2019-06-20-14-23-48.bpo-37347.Gf9yYI.rst
new file mode 100644
index 0000000..1e61f5e
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-06-20-14-23-48.bpo-37347.Gf9yYI.rst
@@ -0,0 +1,6 @@
+:meth:`sqlite3.Connection.create_aggregate`,
+:meth:`sqlite3.Connection.create_function`,
+:meth:`sqlite3.Connection.set_authorizer`,
+:meth:`sqlite3.Connection.set_progress_handler`
+:meth:`sqlite3.Connection.set_trace_callback`
+methods lead to segfaults if some of these methods are called twice with an equal object but not the same. Now callbacks are stored more carefully. Patch by Aleksandr Balezin. \ No newline at end of file