diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-05-28 09:57:38 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-05-28 09:57:38 (GMT) |
commit | 30080fd63d29e736e64d4d7b790f36485e0099b1 (patch) | |
tree | 51b4e123be232678b5fbbf71bd5d63a818a62da8 /Misc | |
parent | d0d4f2d0c653c94396ee1e7dc2b80d7debc80e9e (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |