This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: list.index does not accept None as start or stop
Type: behavior Stage: resolved
Components: Interpreter Core Versions: Python 3.6, Python 3.5, Python 2.7
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: Aaron.Meurer, Carl.Friedrich.Bolz, alex, amaury.forgeotdarc, berker.peksag, iritkatriel, mark.dickinson, petri.lehtinen, python-dev, r.david.murray, rhettinger, serhiy.storchaka
Priority: normal Keywords:

Created on 2011-11-04 09:23 by Carl.Friedrich.Bolz, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (19)
msg147000 - (view) Author: Carl Friedrich Bolz-Tereick (Carl.Friedrich.Bolz) * Date: 2011-11-04 09:23
The list.index method does not accept None as start and stop, which makes the error message quite confusing:

>>> [1, 2, 3].index(2, None, None)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: slice indices must be integers or None or have an __index__ method

I checked this in 3.2.2 and 2.7.2. Seems similar to #12163.
msg147108 - (view) Author: Petri Lehtinen (petri.lehtinen) * (Python committer) Date: 2011-11-05 20:23
The same issue exists for tuples:

>>> (1, 2, 3).index(2, None)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: slice indices must be integers or None or have an __index__ method
msg147111 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-11-05 21:30
New changeset 0f0eda4daac7 by Petri Lehtinen in branch '2.7':
Accept None as start and stop parameters for list.index() and tuple.index()
http://hg.python.org/cpython/rev/0f0eda4daac7

New changeset 5c1fcaf3cf1c by Petri Lehtinen in branch '3.2':
Accept None as start and stop parameters for list.index() and tuple.index()
http://hg.python.org/cpython/rev/5c1fcaf3cf1c

New changeset c33aa14f4edb by Petri Lehtinen in branch 'default':
Accept None as start and stop parameters for list.index() and tuple.index().
http://hg.python.org/cpython/rev/c33aa14f4edb
msg147113 - (view) Author: Petri Lehtinen (petri.lehtinen) * (Python committer) Date: 2011-11-05 21:32
Committed a fix for both list and tuple. I considered this a bug fix rather than a new feature based on discussion in #11828, especially msg133532, and applied the fix to 2.7 and 3.2, too.
msg147114 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2011-11-05 21:35
The relevant code is in _PyEval_SliceIndex() in Python/ceval.c.
msg147116 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2011-11-05 21:37
I think this "fix" was too hastily committed. 

1) It was an API change.
2) It probably should have been done in _PyEval_SliceIndex().

Be careful.  Don't rush to commit.  Especially for backports.
msg147117 - (view) Author: Petri Lehtinen (petri.lehtinen) * (Python committer) Date: 2011-11-05 21:46
> 2) It probably should have been done in _PyEval_SliceIndex().

I saw that other code used the same approach as I used in the fix.

The comment above _PyEval_SliceIndex() suggests it's used in other
contexts too. It seems that 2.7 uses it to implement the SLICE opcode,
while in 3.x it's only used to convert slice-like arguments.

What do you suggest? Doing it in _PyEval_SliceIndex() in 2.7 is
problematic, as we don't want x[None:2], right? :)
msg147120 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2011-11-05 22:17
The API in 2.7 shouldn't be changed.
The error message can be fixed though.

Also, it is not clear that the API should change even in 3.3.  The list.index() method is not required to accept None.  It is not different than other APIs that use PyArg_ParseTuple() with an "i" field for a start, stop, or step argument.
msg147121 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2011-11-05 22:29
str.index does accept None, though
msg147151 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2011-11-06 11:28
> What do you suggest? Doing it in _PyEval_SliceIndex() in 2.7 is
> problematic, as we don't want x[None:2], right? :)

Eh? Don't we already have this?

Python 2.7.2 (default, Aug 22 2011, 13:53:27) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> range(5)[None:2]
[0, 1]

Or am I misunderstanding?
msg147153 - (view) Author: Petri Lehtinen (petri.lehtinen) * (Python committer) Date: 2011-11-06 11:46
> Or am I misunderstanding?

Ah, no, sorry. I wasn't aware of this.

Now the error message set by _PyEval_SliceIndex() makes sense. It doesn't itself accept None, but apply_slice() and assign_slice() handle the None case.

There's still the question whether {list,tuple}.index() should accept None or not.
msg147162 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2011-11-06 17:13
> There's still the question whether {list,tuple}.index() should accept None or not.

The API should not be changed for Py2.7 and Py3.2.  Those changesets should be reverted.

For Py3.3, it is open to discussion, but we probably don't need the change (making every other implementation also change for nearly zero benefit).
msg147163 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2011-11-06 17:18
One other thought:  the API for list.index() doesn't exist in isolation.  There is also str.index, the sequence abstract base class, and tons of code that has been written to emulate lists.  This is an ancient API (approx 20 years) and should only be changed with care.

IOW, I don't think this change should have been made at all, at least not without a discussion on python-dev and motivating use cases.
msg147171 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-11-06 19:15
New changeset 19ffa12ffdd4 by Petri Lehtinen in branch '2.7':
Revert "Accept None as start and stop parameters for list.index() and tuple.index()"
http://hg.python.org/cpython/rev/19ffa12ffdd4

New changeset ed0e85efac47 by Petri Lehtinen in branch '3.2':
Revert "Accept None as start and stop parameters for list.index() and tuple.index()"
http://hg.python.org/cpython/rev/ed0e85efac47

New changeset 106f9e1ad7ab by Petri Lehtinen in branch 'default':
Revert "Accept None as start and stop parameters for list.index() and tuple.index()"
http://hg.python.org/cpython/rev/106f9e1ad7ab
msg147172 - (view) Author: Petri Lehtinen (petri.lehtinen) * (Python committer) Date: 2011-11-06 19:20
It's now reverted on all branches. I posted to python-dev alreay earlier.
msg228937 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2014-10-10 01:22
Per discussion in the issue, I'm changing this to a bugfix on the message text.  If the python-dev discussion resulted (or results in the future) in a desire to change the API, that should be a new issue.
msg263582 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2016-04-16 19:36
See http://thread.gmane.org/gmane.comp.python.devel/127502 for the python-dev thread.
msg376958 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2020-09-15 22:09
The error message was fixed under issue29935, so I think this issue can now be closed.
msg376977 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-09-16 07:15
Thank you for the reminder Irit. Your comments for issues and PRs are really helpful. Thank you for all this!
History
Date User Action Args
2022-04-11 14:57:23adminsetgithub: 57549
2020-09-16 07:15:26serhiy.storchakasetstatus: open -> closed

nosy: + serhiy.storchaka
messages: + msg376977

resolution: out of date
stage: needs patch -> resolved
2020-09-15 22:09:17iritkatrielsetnosy: + iritkatriel
messages: + msg376958
2016-04-16 19:36:04berker.peksagsetnosy: + berker.peksag

messages: + msg263582
versions: + Python 3.6, - Python 3.4
2014-10-10 01:22:52r.david.murraysetversions: + Python 2.7, Python 3.4, Python 3.5, - Python 3.3
nosy: + r.david.murray

messages: + msg228937

stage: commit review -> needs patch
2013-07-12 13:56:05Aaron.Meurersetnosy: + Aaron.Meurer
2012-02-25 08:08:27eric.araujosetpriority: high -> normal
stage: resolved -> commit review
versions: - Python 2.7, Python 3.2
2011-11-06 19:20:00petri.lehtinensetmessages: + msg147172
2011-11-06 19:15:23python-devsetmessages: + msg147171
2011-11-06 17:18:05rhettingersetpriority: normal -> high
resolution: fixed -> (no value)
messages: + msg147163
2011-11-06 17:13:58rhettingersetmessages: + msg147162
2011-11-06 11:46:58petri.lehtinensetmessages: + msg147153
2011-11-06 11:28:00mark.dickinsonsetnosy: + mark.dickinson
messages: + msg147151
2011-11-05 22:29:04amaury.forgeotdarcsetnosy: + amaury.forgeotdarc
messages: + msg147121
2011-11-05 22:17:33rhettingersetmessages: + msg147120
2011-11-05 21:46:24petri.lehtinensetmessages: + msg147117
2011-11-05 21:37:34rhettingersetstatus: closed -> open

messages: + msg147116
2011-11-05 21:35:21rhettingersetnosy: + rhettinger
messages: + msg147114
2011-11-05 21:32:08petri.lehtinensetmessages: + msg147113
2011-11-05 21:30:20python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg147111

resolution: fixed
stage: needs patch -> resolved
2011-11-05 20:27:23alexsetnosy: + alex
2011-11-05 20:23:10petri.lehtinensetversions: + Python 3.3
nosy: + petri.lehtinen

messages: + msg147108

components: + Interpreter Core
stage: needs patch
2011-11-04 09:23:03Carl.Friedrich.Bolzcreate