[issue31942] Document that support of start and stop parameters in the Sequence's index() is optional

2017-12-12 Thread STINNER Victor
STINNER Victor added the comment: Thanks Nitish Chandra for your doc enhancement! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue31942] Document that support of start and stop parameters in the Sequence's index() is optional

2017-12-12 Thread STINNER Victor
STINNER Victor added the comment: New changeset 78cd00b799be36a35c9f5cc99ce3bcef31112a5f by Victor Stinner (Miss Islington (bot)) in branch '3.6': bpo-31942: Document optional support of start and stop attributes in Sequence.index method (GH-4277) (#4811)

[issue31942] Document that support of start and stop parameters in the Sequence's index() is optional

2017-12-12 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +4706 ___ Python tracker ___

[issue31942] Document that support of start and stop parameters in the Sequence's index() is optional

2017-12-12 Thread STINNER Victor
STINNER Victor added the comment: New changeset 5ce0a2a100909104836f53a2c8823006ec46f8ad by Victor Stinner (Nitish Chandra) in branch 'master': bpo-31942: Document optional support of start and stop attributes in Sequence.index method (#4277)

[issue31942] Document that support of start and stop parameters in the Sequence's index() is optional

2017-12-07 Thread Nitish
Nitish added the comment: Any comments on the PR? -- ___ Python tracker ___

[issue31942] Document that support of start and stop parameters in the Sequence's index() is optional

2017-11-06 Thread STINNER Victor
STINNER Victor added the comment: See also bpo-31956: "Add start and stop parameters to the array.index()". -- nosy: +haypo ___ Python tracker

[issue31942] Document that support of start and stop parameters in the Sequence's index() is optional

2017-11-04 Thread Nitish
Change by Nitish : -- nosy: +nitishch ___ Python tracker ___ ___

[issue31942] Document that support of start and stop parameters in the Sequence's index() is optional

2017-11-04 Thread Nitish
Change by Nitish : -- keywords: +patch pull_requests: +4239 stage: needs patch -> patch review ___ Python tracker ___

[issue31942] Document that support of start and stop parameters in the Sequence's index() is optional

2017-11-04 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +Devin Jeanpierre ___ Python tracker ___

[issue31942] Document that support of start and stop parameters in the Sequence's index() is optional

2017-11-04 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : Parameters start and stop were added to the Sequence.index() mixin method in 3.5 (see issue23086). But not all concrete implementations of the Sequence ABC support them (for example range.index() doesn't, see issue28197). This