[issue42198] Clean up docs for Union and GenericAlias

2020-10-31 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks Ken Ji for all your help! I'll close this now. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker __

[issue42198] Clean up docs for Union and GenericAlias

2020-10-31 Thread Guido van Rossum
Guido van Rossum added the comment: New changeset 3bf0d02f2817c48b6ee61a95b52a6d76ad543be9 by kj in branch 'master': bpo-42198: New section in stdtypes for type annotation types (GH-23063) https://github.com/python/cpython/commit/3bf0d02f2817c48b6ee61a95b52a6d76ad543be9 -- _

[issue42198] Clean up docs for Union and GenericAlias

2020-10-31 Thread Ken Jin
Change by Ken Jin : -- pull_requests: +21982 pull_request: https://github.com/python/cpython/pull/23063 ___ Python tracker ___ ___ P

[issue42198] Clean up docs for Union and GenericAlias

2020-10-31 Thread Ken Jin
Ken Jin added the comment: Guido, I have one last one -- "2. Park GenericAlias and Union under a new section 'Type Annotation Types' in stdtypes for 3.10". After which I'll close this issue. Thanks for reviewing my PRs so quickly! -- ___ Python

[issue42198] Clean up docs for Union and GenericAlias

2020-10-31 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks for all your efforts, KJ! Can this issue be closed? -- ___ Python tracker ___ ___ Python

[issue42198] Clean up docs for Union and GenericAlias

2020-10-31 Thread miss-islington
miss-islington added the comment: New changeset d21cb2d5ee56b8975d92e2ee094aba81f0801be5 by kj in branch 'master': bpo-42198: Improve consistency of Union docs (GH-23029) https://github.com/python/cpython/commit/d21cb2d5ee56b8975d92e2ee094aba81f0801be5 -- ___

[issue42198] Clean up docs for Union and GenericAlias

2020-10-31 Thread miss-islington
miss-islington added the comment: New changeset dbaa07db671c4e5842629c8be912f2b0370be794 by kj in branch '3.9': [3.9] bpo-42198: Document __new__ for types.GenericAlias (GH-23039) (GH-23061) https://github.com/python/cpython/commit/dbaa07db671c4e5842629c8be912f2b0370be794 -- ___

[issue42198] Clean up docs for Union and GenericAlias

2020-10-31 Thread Ken Jin
Change by Ken Jin : -- pull_requests: +21980 pull_request: https://github.com/python/cpython/pull/23061 ___ Python tracker ___ ___ P

[issue42198] Clean up docs for Union and GenericAlias

2020-10-30 Thread miss-islington
miss-islington added the comment: New changeset bcbf758476c1148993ddf4b54d3f6169b973ee1c by kj in branch 'master': bpo-42198: Document __new__ for types.GenericAlias (GH-23039) https://github.com/python/cpython/commit/bcbf758476c1148993ddf4b54d3f6169b973ee1c -- _

[issue42198] Clean up docs for Union and GenericAlias

2020-10-30 Thread Ken Jin
Change by Ken Jin : -- pull_requests: +21958 pull_request: https://github.com/python/cpython/pull/23039 ___ Python tracker ___ ___ P

[issue42198] Clean up docs for Union and GenericAlias

2020-10-29 Thread miss-islington
miss-islington added the comment: New changeset a39068bf48766e5520e175eae8cda33531e16039 by Miss Skeleton (bot) in branch '3.9': bpo-42198: Link to GenericAlias in typing and expressions (GH-23030) https://github.com/python/cpython/commit/a39068bf48766e5520e175eae8cda33531e16039 --

[issue42198] Clean up docs for Union and GenericAlias

2020-10-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +21952 pull_request: https://github.com/python/cpython/pull/23033 ___ Python tracker ___ __

[issue42198] Clean up docs for Union and GenericAlias

2020-10-29 Thread miss-islington
miss-islington added the comment: New changeset 9129af6050b747f288baa9d4e7d43031647ed222 by kj in branch 'master': bpo-42198: Link to GenericAlias in typing and expressions (GH-23030) https://github.com/python/cpython/commit/9129af6050b747f288baa9d4e7d43031647ed222 -- nosy: +miss-isl

[issue42198] Clean up docs for Union and GenericAlias

2020-10-29 Thread Ken Jin
Change by Ken Jin : -- pull_requests: +21949 pull_request: https://github.com/python/cpython/pull/23030 ___ Python tracker ___ ___ P

[issue42198] Clean up docs for Union and GenericAlias

2020-10-29 Thread Ken Jin
Ken Jin added the comment: 4. types.GenericAlias's __call__ signature of (origin, args) is not documented anywhere, I'll create a PR to types.rst eventually. -- ___ Python tracker __

[issue42198] Clean up docs for Union and GenericAlias

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

[issue42198] Clean up docs for Union and GenericAlias

2020-10-29 Thread Ken Jin
New submission from Ken Jin : This is an umbrella issue to clean up docs for Union and GenericAlias. To-do (not in order): 1. Update links in typing, subscription and union to point to GenericAlias. 2. Park GenericAlias and Union under a new section 'Type Annotation Types' in stdtypes for 3.