[issue44526] Doc typo in "What’s New In Python 3.10" (x/y-axis)

2021-06-29 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue44526] Doc typo in "What’s New In Python 3.10" (x/y-axis)

2021-06-29 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I mean intended wording -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue44526] Doc typo in "What’s New In Python 3.10" (x/y-axis)

2021-06-29 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Since this is the intended behavior, we can just close the issue. -- nosy: +nanjekyejoannah ___ Python tracker ___

[issue44526] Doc typo in "What’s New In Python 3.10" (x/y-axis)

2021-06-29 Thread Brandt Bucher
Brandt Bucher added the comment: I don’t think this is a typo. When x is 0, the point resides somewhere upon the vertical y axis. When y is 0, the point resides somewhere upon the horizontal x axis. Try plotting the points (0, 1) and (1, 0), for example. --

[issue44526] Doc typo in "What’s New In Python 3.10" (x/y-axis)

2021-06-29 Thread Brandt Bucher
Change by Brandt Bucher : -- nosy: +brandtbucher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44526] Doc typo in "What’s New In Python 3.10" (x/y-axis)

2021-06-28 Thread Jack DeVries
Jack DeVries added the comment: @serif2 nice catch! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44526] Doc typo in "What’s New In Python 3.10" (x/y-axis)

2021-06-28 Thread Jack DeVries
Change by Jack DeVries : -- keywords: +patch nosy: +jack__d nosy_count: 2.0 -> 3.0 pull_requests: +25511 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26944 ___ Python tracker

[issue44526] Doc typo in "What’s New In Python 3.10" (x/y-axis)

2021-06-28 Thread serif
New submission from serif : Page: What’s New In Python 3.10 https://docs.python.org/3.10/whatsnew/3.10.html Section: PEP 634: Structural Pattern Matching Patterns and classes In the example code, x and y in the printed messages are swapped. case Point(x=0, y=y):