summaryrefslogtreecommitdiff
path: root/Doc/whatsnew/3.6.rst
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-09-11 12:57:15 +0300
committerBerker Peksag <berker.peksag@gmail.com>2016-09-11 12:57:15 +0300
commitc3f22afb19d63bf7bc3f4bde75887f2f236a0187 (patch)
treea1e5b8e7a709e76c39a59e6f1a6c64476c5950cd /Doc/whatsnew/3.6.rst
parent03d61e6976c4e3899fc84576c91427b60e78cf7a (diff)
downloadcpython-c3f22afb19d63bf7bc3f4bde75887f2f236a0187.tar.gz
Issue #10740: sqlite3 no longer implicitly commit an open transaction before DDL statements
This commit contains the following commits from ghaering/pysqlite: * https://github.com/ghaering/pysqlite/commit/f254c534948c41c0ceb8cbabf0d4a2f547754739 * https://github.com/ghaering/pysqlite/commit/796b3afe38cfdac5d7d5ec260826b0a596554631 * https://github.com/ghaering/pysqlite/commit/cae87ee68613697a5f4947b4a0941f59a28da1b6 * https://github.com/ghaering/pysqlite/commit/3567b31bb5e5b226ba006213a9c69dde3f155faf With the following additions: * Fixed a refcount error * Fixed a compiler warning * Made the string comparison a little more robust * Added a whatsnew entry
Diffstat (limited to 'Doc/whatsnew/3.6.rst')
-rw-r--r--Doc/whatsnew/3.6.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index 8752b83e63..a3f216f507 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -1195,6 +1195,9 @@ Changes in 'python' Command Behavior
Changes in the Python API
-------------------------
+* :mod:`sqlite3` no longer implicitly commit an open transaction before DDL
+ statements.
+
* On Linux, :func:`os.urandom` now blocks until the system urandom entropy pool
is initialized to increase the security.