You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It used to be a common idiom pre-typing, but it really does not matter. Raising is fine as the intention is to signal loudly that a base method is not implemented
There are some functions like
from_native
in the VersionRange base class that return this exception instead of raising it.This leads to a TypeError when using it as
version in version_range.from_native(...)
, effectively attempting__contains__
over an exception classIs this intended?
The text was updated successfully, but these errors were encountered: