I think everything we need from Python 3.8 has been backported in typing_extensions.
get_args and get_origin are only in typing_extensions on Python 3.7 and up because they need PEP 560, so that is the minimum Python version we will be able to support.
I think everything we need from Python 3.8 has been backported in
typing_extensions
.get_args
andget_origin
are only intyping_extensions
on Python 3.7 and up because they need PEP 560, so that is the minimum Python version we will be able to support.