[issue43266] "String conversion and formatting" formatting messes up array subscripting

2021-02-28 Thread Carol Willing
Carol Willing added the comment: New changeset 4ebd637dde7d7e56b18926d2a70657abcac73df0 by Miss Islington (bot) in branch '3.8': closes bpo-43266: Improve array formatting. (GH-24573) (GH-24585) https://github.com/python/cpython/commit/4ebd637dde7d7e56b18926d2a70657abcac73df0 --

[issue43266] "String conversion and formatting" formatting messes up array subscripting

2021-02-19 Thread miss-islington
miss-islington added the comment: New changeset 1cfed3d5b0ec1419c8a1d5cf8bff1a6e1483771a by Miss Islington (bot) in branch '3.9': closes bpo-43266: Improve array formatting. (GH-24573) https://github.com/python/cpython/commit/1cfed3d5b0ec1419c8a1d5cf8bff1a6e1483771a --

[issue43266] "String conversion and formatting" formatting messes up array subscripting

2021-02-19 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +23363 pull_request: https://github.com/python/cpython/pull/24584 ___ Python tracker

[issue43266] "String conversion and formatting" formatting messes up array subscripting

2021-02-19 Thread miss-islington
Change by miss-islington : -- pull_requests: +23364 pull_request: https://github.com/python/cpython/pull/24585 ___ Python tracker ___

[issue43266] "String conversion and formatting" formatting messes up array subscripting

2021-02-19 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 2d3e463e4a5aa109d1c15c86f9631580f5ef7a7e by Erlend Egeberg Aasland in branch 'master': closes bpo-43266: Improve array formatting. (GH-24573) https://github.com/python/cpython/commit/2d3e463e4a5aa109d1c15c86f9631580f5ef7a7e --

[issue43266] "String conversion and formatting" formatting messes up array subscripting

2021-02-19 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- keywords: +patch pull_requests: +23352 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24573 ___ Python tracker

[issue43266] "String conversion and formatting" formatting messes up array subscripting

2021-02-19 Thread Erlend Egeberg Aasland
New submission from Erlend Egeberg Aasland : str[size-1] is rendered incorrectly in https://docs.python.org/3.10/c-api/conversion.html The original intent was probably to apply italics to the variables names only. This can be fixed by prefixing the first bracket with a backslash. However,