⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.144
Server IP:
157.245.143.252
Server:
Linux www 6.11.0-9-generic #9-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 14 13:19:59 UTC 2024 x86_64
Server Software:
nginx/1.26.0
PHP Version:
8.3.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
python3.12
/
test
/
support
/
_hypothesis_stubs
/
Edit File: _helpers.py
# Stub out only the subset of the interface that we actually use in our tests. class StubClass: def __init__(self, *args, **kwargs): self.__stub_args = args self.__stub_kwargs = kwargs self.__repr = None def _with_repr(self, new_repr): new_obj = self.__class__(*self.__stub_args, **self.__stub_kwargs) new_obj.__repr = new_repr return new_obj def __repr__(self): if self.__repr is not None: return self.__repr argstr = ", ".join(self.__stub_args) kwargstr = ", ".join(f"{kw}={val}" for kw, val in self.__stub_kwargs.items()) in_parens = argstr if kwargstr: in_parens += ", " + kwargstr return f"{self.__class__.__qualname__}({in_parens})" def stub_factory(klass, name, *, with_repr=None, _seen={}): if (klass, name) not in _seen: class Stub(klass): def __init__(self, *args, **kwargs): super().__init__() self.__stub_args = args self.__stub_kwargs = kwargs Stub.__name__ = name Stub.__qualname__ = name if with_repr is not None: Stub._repr = None _seen.setdefault((klass, name, with_repr), Stub) return _seen[(klass, name, with_repr)]
Simpan