SIGN IN SIGN UP

bpo-42233: Correctly repr GenericAlias when used with typing module (GH-23081)

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
K
kj committed
1f7dfb277e5b88cddc13e5024766be787a3e9127
Parent: 148c76b
Committed by GitHub <noreply@github.com> on 11/1/2020, 6:13:38 PM