Staging
v0.8.1
https://github.com/python/cpython
Revision 1f7dfb277e5b88cddc13e5024766be787a3e9127 authored by kj on 01 November 2020, 18:13:38 UTC, committed by GitHub on 01 November 2020, 18:13:38 UTC


Noticed by @serhiy-storchaka in the bpo.  `typing`'s types were not showing the parameterized generic. 
Eg. previously:
```python
>>> typing.Union[dict[str, float], list[int]]
'typing.Union[dict, list]'
```
Now:
```python
>>> typing.Union[dict[str, float], list[int]]
'typing.Union[dict[str, float], list[int]]'
```

Automerge-Triggered-By: GH:gvanrossum
1 parent 148c76b
History
Tip revision: 1f7dfb277e5b88cddc13e5024766be787a3e9127 authored by kj on 01 November 2020, 18:13:38 UTC
bpo-42233: Correctly repr GenericAlias when used with typing module (GH-23081)
Tip revision: 1f7dfb2
File Mode Size
build.yml -rw-r--r-- 4.1 KB
build_msi.yml -rw-r--r-- 626 bytes
coverage.yml -rw-r--r-- 2.6 KB
doc.yml -rw-r--r-- 1.0 KB
posix-deps-apt.sh -rwxr-xr-x 324 bytes

back to top