[issue35508] array.index should take optional start and stop indices like for lists

2018-12-15 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: No problem. I adding duplicate as resolution linking to issue31956. Feel free to add yourself on issue31956 to keep track of it. Thanks -- resolution: -> duplicate superseder: -> Add start and stop parameters to the array.index() ___

[issue35508] array.index should take optional start and stop indices like for lists

2018-12-15 Thread Neil Booth
Neil Booth added the comment: Sorry for the duplicate; a simple search didn't find it. -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue35508] array.index should take optional start and stop indices like for lists

2018-12-15 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Please see issue31956 that has an open PR and discussion. -- nosy: +xtreak ___ Python tracker ___ _

[issue35508] array.index should take optional start and stop indices like for lists

2018-12-15 Thread Neil Booth
New submission from Neil Booth : list.index has signature: index(value, [start, [stop]]) array.index from the array module should provide the same facility -- components: Library (Lib) messages: 331891 nosy: kyuupichan priority: normal severity: normal status: open title: array.ind