blueloveTH 2 år sedan
förälder
incheckning
a51025f516
1 ändrade filer med 7 tillägg och 1 borttagningar
  1. 7 1
      python/typing.py

+ 7 - 1
python/typing.py

@@ -5,7 +5,13 @@ class _Placeholder:
         return self
     def __call__(self, *args, **kwargs):
         return self
-    
+    def __and__(self, other):
+        return self
+    def __or__(self, other):
+        return self
+    def __xor__(self, other):
+        return self
+
 
 _PLACEHOLDER = _Placeholder()