[issue41805] types.GenericAlias and types.Union have no documentation

2020-10-28 Thread Guido van Rossum
Guido van Rossum added the comment: Cool. Please add me to the nosy list of any issues you open. Also, if you're interesting helping out with the match statement, once the SC approves it, we'll need to add docs for that. See issue42128 for a possible plan. --

[issue41805] types.GenericAlias and types.Union have no documentation

2020-10-28 Thread Ken Jin
Ken Jin added the comment: @guido, you're welcome! I'm thinking of updating the temporary hyperlinks for GenericAlias/PEP 585 in Union, subscriptions and typing, I'll submit 2 separate PRs since subscription and typing require backporting. If I think of anything major, I'll open a separate

[issue41805] types.GenericAlias and types.Union have no documentation

2020-10-28 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks Ken Ji! Are you planning more doc patches? -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue41805] types.GenericAlias and types.Union have no documentation

2020-10-28 Thread miss-islington
miss-islington added the comment: New changeset 577d7c4e628260eb7926d043ca9c355ece583eb7 by kj in branch '3.9': [3.9] bpo-41805: Documentation for PEP 585 (GH-22615) (GH-23016) https://github.com/python/cpython/commit/577d7c4e628260eb7926d043ca9c355ece583eb7 -- nosy: +miss-islington

[issue41805] types.GenericAlias and types.Union have no documentation

2020-10-28 Thread Ken Jin
Change by Ken Jin : -- pull_requests: +21932 pull_request: https://github.com/python/cpython/pull/23016 ___ Python tracker ___ ___

[issue41805] types.GenericAlias and types.Union have no documentation

2020-10-27 Thread Guido van Rossum
Guido van Rossum added the comment: New changeset 4173320920706b49a004b8d7108e8984e3fc by kj in branch 'master': bpo-41805: Documentation for PEP 585 (GH-22615) https://github.com/python/cpython/commit/4173320920706b49a004b8d7108e8984e3fc -- nosy: +gvanrossum

[issue41805] types.GenericAlias and types.Union have no documentation

2020-10-09 Thread Ken Jin
Change by Ken Jin : -- keywords: +patch pull_requests: +21596 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22615 ___ Python tracker ___

[issue41805] types.GenericAlias and types.Union have no documentation

2020-10-08 Thread Patrick Reader
Patrick Reader added the comment: Sorry, I'd completely forgotten about doing a PR for this. Go ahead! -- ___ Python tracker ___

[issue41805] types.GenericAlias and types.Union have no documentation

2020-10-05 Thread Ken Jin
Ken Jin added the comment: Hi Patrick, I've completed the docs for PEP 604, and would like to work on the docs for PEP 585. May I know if you're still working on this? -- nosy: +kj ___ Python tracker

[issue41805] types.GenericAlias and types.Union have no documentation

2020-09-17 Thread Andrés Delfino
Andrés Delfino added the comment: Hi, Patrick! Yes! It would be great if you could open a PR to document those new types. The documentation of types.Union should go to master only, and the documentation of types.GenericAlias to both master and 3.9, so two PRs should me opened to address

[issue41805] types.GenericAlias and types.Union have no documentation

2020-09-17 Thread Patrick Reader
New submission from Patrick Reader : See title. For reference: `GenericAlias` was added by Guido van Rossum in commit 48b069a003ba6c684a9ba78493fbbec5e89f10b8 "bpo-39481: Implementation for [PEP 585](https://www.python.org/dev/peps/pep-0585/) (#18239)" `Union` was added by Maggi Moss in