We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
None
__instancecheck__
1 parent c2e87a5 commit 3430513Copy full SHA for 3430513
unification/variable.py
@@ -10,6 +10,7 @@ class LVarType(ABCMeta):
10
def __instancecheck__(self, o):
11
with suppress(TypeError):
12
return issubclass(type(o), (Var, LVarType)) or o in _glv
13
+ return False
14
15
16
class Var(metaclass=LVarType):
0 commit comments