diff options
author | Raymond Hettinger <python@rcn.com> | 2015-05-23 02:29:22 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2015-05-23 02:29:22 (GMT) |
commit | ec219ba1c04c4514b8b004239b1a0eac914dde4a (patch) | |
tree | 30abd24e56cc7faec9bb332728253c4a58f57e91 /Misc | |
parent | 256613c605bf207ed77616c04563275cfbaf3ee4 (diff) | |
download | cpython-ec219ba1c04c4514b8b004239b1a0eac914dde4a.zip cpython-ec219ba1c04c4514b8b004239b1a0eac914dde4a.tar.gz cpython-ec219ba1c04c4514b8b004239b1a0eac914dde4a.tar.bz2 |
Issue #23086: Add start and stop arguments to the Sequence.index() mixin method.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -660,6 +660,7 @@ Bill Janssen Thomas Jarosch Juhana Jauhiainen Rajagopalasarma Jayakrishnan +Devin Jeanpierre Zbigniew Jędrzejewski-Szmek Julien Jehannet Muhammad Jehanzeb @@ -73,6 +73,10 @@ Library - Issue #23973: PEP 484: Add the typing module. +- Issue #23086: The collections.abc.Sequence() abstract base class added + *start* and *stop* parameters to the index() mixin. + Patch by Devin Jeanpierre. + - Issue #20035: Replaced the ``tkinter._fix`` module used for setting up the Tcl/Tk environment on Windows with a private function in the ``_tkinter`` module that makes no permanent changes to the environment. |