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
Why is the following not a part of TypeVariable.above() and TypeVariable.below()?
TypeVariable.above()
TypeVariable.below()
if upper == lower: self.bind(upper())
The text was updated successfully, but these errors were encountered:
Should be:
if a.upper and a.upper == a.lower and a.upper is not None: self.bind(a.upper())
Would otherwise cause errors. Rest of point stands.
Sorry, something went wrong.
With the new constraint logic (#85) this actually leads to a practical issue, so it will be included.
Add missing logic for type variable binding. (#56)
9d78bc0
MWE is for later.
66e90d2
This time for real, with MWE. See 9d78bc0 for initial commit.
No branches or pull requests
Why is the following not a part of
TypeVariable.above()
andTypeVariable.below()
?The text was updated successfully, but these errors were encountered: