[issue43453] docs: runtime_checkable example refers to changed behavior in 3.10

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

[issue43453] docs: runtime_checkable example refers to changed behavior in 3.10

2021-07-05 Thread miss-islington
miss-islington added the comment: New changeset 846cc4d28025ac4319069ec3c6db9526c75efd40 by Miss Islington (bot) in branch '3.10': bpo-43453: Update and re-add example to typing runtime_checkable (GH-27013) https://github.com/python/cpython/commit/846cc4d28025ac4319069ec3c6db9526c75efd40 --

[issue43453] docs: runtime_checkable example refers to changed behavior in 3.10

2021-07-05 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +25596 pull_request: https://github.com/python/cpython/pull/27036 ___ Python tracker _

[issue43453] docs: runtime_checkable example refers to changed behavior in 3.10

2021-07-05 Thread Guido van Rossum
Guido van Rossum added the comment: New changeset 17f94e28882e1e2b331ace93f42e8615383dee59 by andrei kulakov in branch 'main': bpo-43453: Update and re-add example to typing runtime_checkable (#27013) https://github.com/python/cpython/commit/17f94e28882e1e2b331ace93f42e8615383dee59

[issue43453] docs: runtime_checkable example refers to changed behavior in 3.10

2021-07-04 Thread Andrei Kulakov
Change by Andrei Kulakov : -- keywords: +patch nosy: +andrei.avk nosy_count: 2.0 -> 3.0 pull_requests: +25573 stage: -> patch review pull_request: https://github.com/python/cpython/pull/27013 ___ Python tracker

[issue43453] docs: runtime_checkable example refers to changed behavior in 3.10

2021-03-09 Thread Henry Schreiner
New submission from Henry Schreiner : The documentation here: https://docs.python.org/3/library/typing.html#typing.runtime_checkable refers to "For example, builtins.complex implements __float__(), therefore it passes an issubclass() check against SupportsFloat. However, the complex.__float__