[issue30619] typing.Union doc incoherence in case a class and its subclass are present

2017-06-22 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Fixed and backported to 3.5 and 3.6. Thanks! -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed versions: +Python 3.7 ___ Python tracker

[issue30619] typing.Union doc incoherence in case a class and its subclass are present

2017-06-22 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset ce1bd6ac7ffaf396157a9ceb55b281a3b196323f by Mariatta in branch '3.5': [3.5] bpo-30619: Clarify typing.Union documentation (GH-2326) (GH-2338) https://github.com/python/cpython/commit/ce1bd6ac7ffaf396157a9ceb55b281a3b196323f --

[issue30619] typing.Union doc incoherence in case a class and its subclass are present

2017-06-22 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +2381 ___ Python tracker ___ ___

[issue30619] typing.Union doc incoherence in case a class and its subclass are present

2017-06-22 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 8baf78b98f3acd76e51a4381542ff1612911b18f by Mariatta in branch '3.6': [3.6] bpo-30619: Clarify typing.Union documentation (GH-2326) (GH-2337) https://github.com/python/cpython/commit/8baf78b98f3acd76e51a4381542ff1612911b18f --

[issue30619] typing.Union doc incoherence in case a class and its subclass are present

2017-06-22 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +2380 ___ Python tracker ___ ___

[issue30619] typing.Union doc incoherence in case a class and its subclass are present

2017-06-22 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- stage: -> backport needed ___ Python tracker ___

[issue30619] typing.Union doc incoherence in case a class and its subclass are present

2017-06-22 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 6580c19bbbe7bc9bc0884699afd69184f523b32e by Mariatta (khyox) in branch 'master': bpo-30619: Clarify typing.Union documentation (GH-2326) https://github.com/python/cpython/commit/6580c19bbbe7bc9bc0884699afd69184f523b32e -- nosy:

[issue30619] typing.Union doc incoherence in case a class and its subclass are present

2017-06-22 Thread khyox
Changes by khyox : -- pull_requests: +2375 ___ Python tracker ___ ___ Python-bugs-list

[issue30619] typing.Union doc incoherence in case a class and its subclass are present

2017-06-16 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: Yes, you are right. Could you please make a PR at https://github.com/python/cpython/pulls ? -- nosy: +levkivskyi ___ Python tracker

[issue30619] typing.Union doc incoherence in case a class and its subclass are present

2017-06-09 Thread khyox
New submission from khyox: In https://docs.python.org/3.6/library/typing.html#typing.Union, when giving details for Union and in the case when a class and its subclass are present, the doc states: When a class and its subclass are present, the former is skipped, e.g.: Union[int,