[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-06-25 Thread miss-islington
miss-islington added the comment: New changeset 88970125e7a4917966f711dc7e93cf170977034f by Miss Islington (bot) in branch '3.10': bpo-43977: Properly update the tp_flags of existing subclasses when their parents are registered (GH-26864) https://github.com/python/cpython/commit/88970125e7a4

[issue43977] Implement the latest semantics for PEP 634 for matching collections

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

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-06-25 Thread Brandt Bucher
Brandt Bucher added the comment: New changeset ca2009d72a52a98bf43aafa9ad270a4fcfabfc89 by Brandt Bucher in branch 'main': bpo-43977: Properly update the tp_flags of existing subclasses when their parents are registered (GH-26864) https://github.com/python/cpython/commit/ca2009d72a52a98bf43a

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-06-22 Thread Brandt Bucher
Change by Brandt Bucher : -- pull_requests: +25439 pull_request: https://github.com/python/cpython/pull/26864 ___ Python tracker ___ ___

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-05-13 Thread Carol Willing
Carol Willing added the comment: New changeset e7d25d3f3b335eb46d102137b447325f54750e31 by Miss Islington (bot) in branch '3.10': bpo-43977: Update pattern matching language reference docs (GH-25917) (GH-26117) https://github.com/python/cpython/commit/e7d25d3f3b335eb46d102137b447325f54750e31

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-05-13 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +24762 pull_request: https://github.com/python/cpython/pull/26117 ___ Python tracker _

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-05-05 Thread Ken Jin
Change by Ken Jin : -- nosy: +kj nosy_count: 2.0 -> 3.0 pull_requests: +24586 pull_request: https://github.com/python/cpython/pull/25917 ___ Python tracker ___

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-05-02 Thread Mark Shannon
Change by Mark Shannon : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-05-02 Thread Mark Shannon
Mark Shannon added the comment: New changeset 33ec88ac81f23668293d101b83367b086c795e5e by Mark Shannon in branch 'master': bpo-43977: Make sure that tp_flags for pattern matching are inherited correctly. (GH-25813) https://github.com/python/cpython/commit/33ec88ac81f23668293d101b83367b086c79

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-05-02 Thread Brandt Bucher
Brandt Bucher added the comment: New changeset 9387fac100db359cbb6ec2a76f8a5eba8f9d7b65 by Brandt Bucher in branch 'master': bpo-43977: Document the new pattern matching type flags (GH-25734) https://github.com/python/cpython/commit/9387fac100db359cbb6ec2a76f8a5eba8f9d7b65 -- _

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-05-02 Thread Mark Shannon
Change by Mark Shannon : -- pull_requests: +24500 pull_request: https://github.com/python/cpython/pull/25813 ___ Python tracker ___

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-04-30 Thread Mark Shannon
Mark Shannon added the comment: New changeset 069e81ab3da46c441335ca762c4333b7bd91861d by Mark Shannon in branch 'master': bpo-43977: Use tp_flags for collection matching (GH-25723) https://github.com/python/cpython/commit/069e81ab3da46c441335ca762c4333b7bd91861d -- ___

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-04-29 Thread Brandt Bucher
Change by Brandt Bucher : -- pull_requests: +24425 pull_request: https://github.com/python/cpython/pull/25734 ___ Python tracker ___ ___

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-04-29 Thread Brandt Bucher
Change by Brandt Bucher : -- nosy: +brandtbucher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-04-29 Thread Mark Shannon
Change by Mark Shannon : -- keywords: +patch pull_requests: +24415 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25723 ___ Python tracker ___ ___

[issue43977] Implement the latest semantics for PEP 634 for matching collections

2021-04-29 Thread Mark Shannon
New submission from Mark Shannon : PEP 634 has been updated to allow a faster and more robust implementation of matching sequences and mappings: https://github.com/python/peps/pull/1937 It needs to be implemented. -- assignee: Mark.Shannon messages: 392330 nosy: Mark.Shannon priority: