[issue40620] [doc] Range tutorial shorthand could be made clearer

2021-06-27 Thread Irit Katriel
Irit Katriel added the comment: Thank you Jack! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue40620] [doc] Range tutorial shorthand could be made clearer

2021-06-27 Thread Irit Katriel
Irit Katriel added the comment: New changeset 1acd1e63850d179383fcb638dcefee4c66b3ca4e by Miss Islington (bot) in branch '3.9': bpo-40620: Clarify tutorial controlflow.rst ``range`` examples (GH-26919) (GH-26928) https://github.com/python/cpython/commit/1acd1e63850d179383fcb638dcefee4c66b3ca

[issue40620] [doc] Range tutorial shorthand could be made clearer

2021-06-27 Thread Irit Katriel
Irit Katriel added the comment: New changeset aeb63392e74976b4289b38f32f1d6e7ff2e0a712 by Miss Islington (bot) in branch '3.10': bpo-40620: Clarify tutorial controlflow.rst ``range`` examples (GH-26919) (GH-26927) https://github.com/python/cpython/commit/aeb63392e74976b4289b38f32f1d6e7ff2e0a

[issue40620] [doc] Range tutorial shorthand could be made clearer

2021-06-27 Thread miss-islington
Change by miss-islington : -- pull_requests: +25498 pull_request: https://github.com/python/cpython/pull/26928 ___ Python tracker ___ __

[issue40620] [doc] Range tutorial shorthand could be made clearer

2021-06-27 Thread Irit Katriel
Irit Katriel added the comment: New changeset 2f49c9debc2efe010c757be3bdbd6493f1ebc5f6 by jdevries3133 in branch 'main': bpo-40620: Clarify tutorial controlflow.rst ``range`` examples (GH-26919) https://github.com/python/cpython/commit/2f49c9debc2efe010c757be3bdbd6493f1ebc5f6 -- nos

[issue40620] [doc] Range tutorial shorthand could be made clearer

2021-06-27 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 6.0 -> 7.0 pull_requests: +25497 pull_request: https://github.com/python/cpython/pull/26927 ___ Python tracker _

[issue40620] [doc] Range tutorial shorthand could be made clearer

2021-06-26 Thread Jack DeVries
Change by Jack DeVries : -- keywords: +patch nosy: +jack__d nosy_count: 5.0 -> 6.0 pull_requests: +25492 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/26919 ___ Python tracker

[issue40620] [doc] Range tutorial shorthand could be made clearer

2021-06-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: Another alternative is to make the example *be* interactive. This would also teach the easy, standard, and often better way to see the output of an iterable. >>> list(range(5, 10)) [5, 6, 7, 8, 9] >>> list(range(0, 10, 3)) [0, 3, 6, 9] >>> list(range(-10, -10

[issue40620] [doc] Range tutorial shorthand could be made clearer

2021-06-23 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy title: Range tutorial shorthand could be made clearer -> [doc] Range tutorial shorthand could be made clearer versions: +Python 3.10, Python 3.11 -Python 3.7, Python 3.8 ___ Python tracker