[issue45619] Mentioning structural pattern matching in the list of binding

2021-11-25 Thread Guido van Rossum
Change by Guido van Rossum : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45619] Mentioning structural pattern matching in the list of binding

2021-11-25 Thread miss-islington
miss-islington added the comment: New changeset 7842aed7a7938df20b652177458407683e7f1a0b by Miss Islington (bot) in branch '3.10': bpo-45619: documentation of execution model: clarify and update binding summary (GH-29232)

[issue45619] Mentioning structural pattern matching in the list of binding

2021-11-25 Thread Guido van Rossum
Guido van Rossum added the comment: New changeset cd876c84932ecc2f7a6c41f3fc800a34d5b06b95 by Arthur Milchior in branch 'main': bpo-45619: documentation of execution model: clarify and update binding summary (#29232)

[issue45619] Mentioning structural pattern matching in the list of binding

2021-11-25 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +28023 pull_request: https://github.com/python/cpython/pull/29787 ___ Python tracker

[issue45619] Mentioning structural pattern matching in the list of binding

2021-10-26 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks! -- nosy: +gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue45619] Mentioning structural pattern matching in the list of binding

2021-10-26 Thread Arthur Milchior
Change by Arthur Milchior : -- keywords: +patch pull_requests: +27495 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29232 ___ Python tracker ___

[issue45619] Mentioning structural pattern matching in the list of binding

2021-10-26 Thread Arthur Milchior
New submission from Arthur Milchior : https://docs.python.org/3/reference/executionmodel.html list all of the way a variable may be bound. However, it seems that it was not updated. Indeed, structural pattern matching in 3.10 also allows to bind a variable and is not mentionned. As a