summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGerhard Häring <gh@ghaering.de>2008-09-12 22:33:22 (GMT)
committerGerhard Häring <gh@ghaering.de>2008-09-12 22:33:22 (GMT)
commite6872eb41710f14d35616b168f21d85c96d26ff7 (patch)
tree264c63a5fea62107ede51bff3901c4b58eec18c7 /Misc
parent6e1afcf9883f13bdf8808dc528e381f5c90a131b (diff)
downloadcpython-e6872eb41710f14d35616b168f21d85c96d26ff7.zip
cpython-e6872eb41710f14d35616b168f21d85c96d26ff7.tar.gz
cpython-e6872eb41710f14d35616b168f21d85c96d26ff7.tar.bz2
Issue #3846: Release GIL during calls to sqlite3_prepare. This improves concurrent access to the same database file from multiple threads/processes.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index aca06f2..a31bcd5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -151,6 +151,10 @@ Extension Modules
- Issue #3103: Reduced globals symbols used by sqlite3 module and made sure all
remaining ones have "pysqlite_" prefix.
+- Issue #3846: Release the GIL during sqlite3_prepare calls. This improves
+ concurrent access to the same SQLite database from multiple
+ threads/processes.
+
Tests
-----