We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We should only support @overload in stubs, as the runtime dispatch implementation of @overload won't be included in PEP 484:
@overload
python/typing#14
Also, we need to refactor away all instances of overloading from the code (outside stubs).
This can be implemented by just making the implementation of @overload raise an exception at runtime.
The text was updated successfully, but these errors were encountered:
97731e4
No branches or pull requests
We should only support
@overload
in stubs, as the runtime dispatch implementation of@overload
won't be included in PEP 484:python/typing#14
Also, we need to refactor away all instances of overloading from the code (outside stubs).
This can be implemented by just making the implementation of
@overload
raise an exception at runtime.The text was updated successfully, but these errors were encountered: