summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-11-02 05:39:56 (GMT)
committerRaymond Hettinger <python@rcn.com>2015-11-02 05:39:56 (GMT)
commita1fc949b5ab8911a803eee691e6eea55cec43eeb (patch)
tree4bed1d2e7e139b761583c5f0ce3a07d6b3dd59d7 /Doc/whatsnew
parent0bdf9ea136c4acca2de0fe6ab799ab35d5b09fd2 (diff)
downloadcpython-a1fc949b5ab8911a803eee691e6eea55cec43eeb.zip
cpython-a1fc949b5ab8911a803eee691e6eea55cec43eeb.tar.gz
cpython-a1fc949b5ab8911a803eee691e6eea55cec43eeb.tar.bz2
Issue #24379: Revert the operator.subscript patch (dccc4e63aef5) pending resolution of the related refcnt leak.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.6.rst8
1 files changed, 0 insertions, 8 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index b500550..0d387bb 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -104,14 +104,6 @@ directives ``%G``, ``%u`` and ``%V``.
(Contributed by Ashley Anderson in :issue:`12006`.)
-operator
---------
-
-New object :data:`operator.subscript` makes it easier to create complex
-indexers. For example: ``subscript[0:10:2] == slice(0, 10, 2)``
-(Contributed by Joe Jevnik in :issue:`24379`.)
-
-
pickle
------