summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-05-28 09:58:34 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-05-28 09:58:34 (GMT)
commit47a981337a8f3898482a1c0c51ad2d91c7a6bc2f (patch)
tree88aef37e02ac0120825904fa8befdc588e028cf2 /Misc
parent432810f9f35c014afecbd24edda6b26a3cf04fd9 (diff)
downloadcpython-47a981337a8f3898482a1c0c51ad2d91c7a6bc2f.zip
cpython-47a981337a8f3898482a1c0c51ad2d91c7a6bc2f.tar.gz
cpython-47a981337a8f3898482a1c0c51ad2d91c7a6bc2f.tar.bz2
Issue #10203: sqlite3.Row now truly supports sequence protocol. In particulr
it supports reverse() and negative indices. Original patch by Claudiu Popa.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 43a4a0c..57cf50f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
+- Issue #10203: sqlite3.Row now truly supports sequence protocol. In particulr
+ it supports reverse() and negative indices. Original patch by Claudiu Popa.
+
- Issue #18807: If copying (no symlinks) specified for a venv, then the python
interpreter aliases (python, python3) are now created by copying rather than
symlinking.