From 3a826ea91777e96dc5811809c0bfe5373ca21d74 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 16 Mar 2013 16:27:23 +0100 Subject: [PATCH] changelog --- CHANGES.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 3b8a8b5..b551c26 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -34,6 +34,11 @@ Features added are automatically mapped to the equivalent keys/values/items methods in Python 3 for typed dictionaries. +* 2-value slicing of unknown objects passes the correct slice when the ``getitem`` + protocol is used instead of the ``getslice`` protocol (especially in Python 3), + i.e. ``None`` values for missing bounds instead of ``[0,maxsize]``. It is also + a bit faster in some cases, e.g. for constant bounds. This fixes trac ticket 636. + * Slicing unicode strings, lists and tuples is faster. * list.append() is faster on average. -- 2.7.4