summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-08-26 19:07:51 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-08-26 19:07:51 (GMT)
commitcc9afa9b517fd66bad148f546055985ad87bc816 (patch)
tree7e15ebe4b9b5098735d66280adb2c68305621a25 /Misc/NEWS
parent7ea386e56e76deb2ceeb87c0ac4b346e24cd82e1 (diff)
downloadcpython-cc9afa9b517fd66bad148f546055985ad87bc816.zip
cpython-cc9afa9b517fd66bad148f546055985ad87bc816.tar.gz
cpython-cc9afa9b517fd66bad148f546055985ad87bc816.tar.bz2
Issue #10513: Fix a regression in Connection.commit()
Statements should not be reset after a commit. Backported from https://github.com/ghaering/pysqlite/commit/029050896b1e6058573abeef5a8970384c0c7faa
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1bd3fb3..f9e2d09 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,9 @@ Core and Builtins
Library
-------
+- Issue #10513: Fix a regression in Connection.commit(). Statements should
+ not be reset after a commit.
+
- A new version of typing.py from https://github.com/python/typing:
- Collection (only for 3.6) (Issue #27598)
- Add FrozenSet to __all__ (upstream #261)