summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-05-28 09:57:38 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-05-28 09:57:38 (GMT)
commit30080fd63d29e736e64d4d7b790f36485e0099b1 (patch)
tree51b4e123be232678b5fbbf71bd5d63a818a62da8 /Misc
parentd0d4f2d0c653c94396ee1e7dc2b80d7debc80e9e (diff)
downloadcpython-30080fd63d29e736e64d4d7b790f36485e0099b1.zip
cpython-30080fd63d29e736e64d4d7b790f36485e0099b1.tar.gz
cpython-30080fd63d29e736e64d4d7b790f36485e0099b1.tar.bz2
Issue #10203: sqlite3.Row now truly supports sequence protocol. In particular
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 663f389..917c292 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 #8743: Fix interoperability between set objects and the
collections.Set() abstract base class.