-
Moved form https://github.com/python/mypy/issues/10127
**Bug Report**
test.py
```py
# example from PEP589
from typing import TypedDict
class Movie(TypedDict):
name: str
year: int…
-
**Bug Report**
test.py
```py
# example from PEP589
from typing import TypedDict
class Movie(TypedDict):
name: str
year: int
move: Movie = {"name": "Blade Runner", "year": 1982}
…
-
**Is your feature request related to a problem? Please describe.**
CrossHair dies with an exception when encountering a [PEP589](https://www.python.org/dev/peps/pep-0589/) TypedDict. See this [crossh…
-
I am writing a distributed execution system, in which messages are sent among task nodes implemented by python functions. Before they are run, the flow graph is "compiled". During this step, I would l…
-
## Description
As a developer, I would like it if code can be refactored to PEP8 standard automatically every time I commit.
I need to add black to the script within docker/travis,
so that I can en…
-
hi
please add [type hint ](https://www.python.org/dev/peps/pep-0589/) for sqlalchemy's functions.
thanks
-
## Description
TypedDict from typing package is good for an explicit declaration of the structured expected from a dictionary
https://www.python.org/dev/peps/pep-0589/
Doc publish date: 20-Mar-2019…