From 0105dd2ce257c28ff12c29b2062ff0b335ab3d5d Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 19 Apr 2013 17:05:25 +0200 Subject: [PATCH] changelog --- CHANGES.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 92d1504..1e3bff1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -52,11 +52,6 @@ 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. @@ -73,6 +68,11 @@ Features added Bugs fixed ---------- +* 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. + * Cascaded assignments of None values to extension type variables failed with a ``TypeError`` at runtime. -- 2.7.4