[issue37913] Document that __length_hint__ may return NotImplemented

2019-09-10 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue37913] Document that __length_hint__ may return NotImplemented

2019-09-10 Thread Steve Dower
Steve Dower added the comment: New changeset 756eb849d7d968f0a0924fa33b68c62831e8884e by Steve Dower (Miss Islington (bot)) in branch '3.7': bpo-37913: document that __length_hint__ can return NotImplemented (GH-15383)

[issue37913] Document that __length_hint__ may return NotImplemented

2019-09-10 Thread Steve Dower
Steve Dower added the comment: New changeset aa3b629a09bfcdf26cdfbbf7d6445ae333c0d44d by Steve Dower in branch '3.7': bpo-37913: document that __length_hint__ can return NotImplemented (GH-15383) https://github.com/python/cpython/commit/aa3b629a09bfcdf26cdfbbf7d6445ae333c0d44d --

[issue37913] Document that __length_hint__ may return NotImplemented

2019-09-10 Thread Steve Dower
Steve Dower added the comment: New changeset ed99bb9ca68b37cfaec3629afa67d70289f3ffc7 by Steve Dower in branch '3.8': bpo-37913: document that __length_hint__ can return NotImplemented (GH-15383) https://github.com/python/cpython/commit/ed99bb9ca68b37cfaec3629afa67d70289f3ffc7 --

[issue37913] Document that __length_hint__ may return NotImplemented

2019-09-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +15511 pull_request: https://github.com/python/cpython/pull/15864 ___ Python tracker ___

[issue37913] Document that __length_hint__ may return NotImplemented

2019-09-10 Thread Steve Dower
Steve Dower added the comment: New changeset a39a4c7439ed09069e619c10d30a6d0ec9332d1a by Steve Dower in branch 'master': bpo-37913: Link to NotImplemented from new docs (GH-15860) https://github.com/python/cpython/commit/a39a4c7439ed09069e619c10d30a6d0ec9332d1a --

[issue37913] Document that __length_hint__ may return NotImplemented

2019-09-10 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +15510 pull_request: https://github.com/python/cpython/pull/15863 ___ Python tracker ___

[issue37913] Document that __length_hint__ may return NotImplemented

2019-09-10 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +15509 pull_request: https://github.com/python/cpython/pull/15862 ___ Python tracker ___

[issue37913] Document that __length_hint__ may return NotImplemented

2019-09-10 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +15507 pull_request: https://github.com/python/cpython/pull/15860 ___ Python tracker ___

[issue37913] Document that __length_hint__ may return NotImplemented

2019-09-10 Thread Steve Dower
Steve Dower added the comment: New changeset 009ef2955d91e04f62a7159a1c7ddaddbfedc3b6 by Steve Dower (Jeroen Demeyer) in branch 'master': bpo-37913: document that __length_hint__ can return NotImplemented (GH-15383)

[issue37913] Document that __length_hint__ may return NotImplemented

2019-08-22 Thread Jeroen Demeyer
Change by Jeroen Demeyer : -- keywords: +patch pull_requests: +15093 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15383 ___ Python tracker ___

[issue37913] Document that __length_hint__ may return NotImplemented

2019-08-22 Thread Jeroen Demeyer
New submission from Jeroen Demeyer : The special method __length_hint__ can return NotImplemented. In this case, the result is as if the __length_hint__ method didn't exist at all. This behaviour is implemented and tested but not documented. -- assignee: docs@python components: