twisted / pydoctor

This is pydoctor, an API documentation generator that works by static analysis.
https://pydoctor.readthedocs.io/
Other
179 stars 47 forks source link

Transform deprecated typing annotation into python 3.10 style #780

Closed tristanlatr closed 2 months ago

tristanlatr commented 2 months ago

typing.Union[x, y] -> x | y typing.Optional[x] -> x | None typing.Dict[x, y] -> dict[x, y] ect...

Full list here: https://docs.python.org/3/library/typing.html#deprecated-aliases

tristanlatr commented 2 months ago

Linked to #280