mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-22 12:30:19 +00:00
some fix
This commit is contained in:
parent
38114d1555
commit
a51025f516
@ -5,6 +5,12 @@ class _Placeholder:
|
|||||||
return self
|
return self
|
||||||
def __call__(self, *args, **kwargs):
|
def __call__(self, *args, **kwargs):
|
||||||
return self
|
return self
|
||||||
|
def __and__(self, other):
|
||||||
|
return self
|
||||||
|
def __or__(self, other):
|
||||||
|
return self
|
||||||
|
def __xor__(self, other):
|
||||||
|
return self
|
||||||
|
|
||||||
|
|
||||||
_PLACEHOLDER = _Placeholder()
|
_PLACEHOLDER = _Placeholder()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user