https://github.com/python/cpython/commit/b1558b6d3e2af8964840a5c00356533107368f22
commit: b1558b6d3e2af8964840a5c00356533107368f22
branch: main
author: Prithviraj Chaudhuri <[email protected]>
committer: encukou <[email protected]>
date: 2025-11-20T15:35:22+01:00
summary:

gh-140042: Removing unsafe call to sqlite3_shutdown (GH-141690)

files:
A Misc/NEWS.d/next/C_API/2025-11-18-04-16-09.gh-issue-140042.S1C7id.rst
M Modules/_sqlite/module.c

diff --git 
a/Misc/NEWS.d/next/C_API/2025-11-18-04-16-09.gh-issue-140042.S1C7id.rst 
b/Misc/NEWS.d/next/C_API/2025-11-18-04-16-09.gh-issue-140042.S1C7id.rst
new file mode 100644
index 00000000000000..608e806b431372
--- /dev/null
+++ b/Misc/NEWS.d/next/C_API/2025-11-18-04-16-09.gh-issue-140042.S1C7id.rst
@@ -0,0 +1 @@
+Removed the sqlite3_shutdown call that could cause closing connections for 
sqlite when used with multiple sub interpreters.
diff --git a/Modules/_sqlite/module.c b/Modules/_sqlite/module.c
index 5464fd1227ad20..831dd9219f77ab 100644
--- a/Modules/_sqlite/module.c
+++ b/Modules/_sqlite/module.c
@@ -774,7 +774,6 @@ module_exec(PyObject *module)
     return 0;
 
 error:
-    sqlite3_shutdown();
     return -1;
 }
 

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to