Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python3.6 /
site-packages /
immutables /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2021-09-16 10:31
__init__.py
217
B
-rw-r--r--
2020-05-18 00:37
_map.c
105.45
KB
-rw-r--r--
2020-05-18 00:37
_map.cpython-36m-x86_64-linux-gnu.so
45.55
KB
-rwxr-xr-x
2021-03-08 17:19
_map.h
2.46
KB
-rw-r--r--
2020-05-18 00:37
_map.pyi
2.99
KB
-rw-r--r--
2020-05-18 00:37
_testutils.py
2.21
KB
-rw-r--r--
2020-05-18 00:37
_version.py
574
B
-rw-r--r--
2020-05-18 00:37
map.py
22.94
KB
-rw-r--r--
2020-05-18 00:37
py.typed
8
B
-rw-r--r--
2020-05-18 00:37
Save
Rename
class HashKey: _crasher = None def __init__(self, hash, name, *, error_on_eq_to=None): assert hash != -1 self.name = name self.hash = hash self.error_on_eq_to = error_on_eq_to def __repr__(self): if self._crasher is not None and self._crasher.error_on_repr: raise ReprError return '<Key name:{} hash:{}>'.format(self.name, self.hash) def __hash__(self): if self._crasher is not None and self._crasher.error_on_hash: raise HashingError return self.hash def __eq__(self, other): if not isinstance(other, HashKey): return NotImplemented if self._crasher is not None and self._crasher.error_on_eq: raise EqError if self.error_on_eq_to is not None and self.error_on_eq_to is other: raise ValueError('cannot compare {!r} to {!r}'.format(self, other)) if other.error_on_eq_to is not None and other.error_on_eq_to is self: raise ValueError('cannot compare {!r} to {!r}'.format(other, self)) return (self.name, self.hash) == (other.name, other.hash) class KeyStr(str): def __hash__(self): if HashKey._crasher is not None and HashKey._crasher.error_on_hash: raise HashingError return super().__hash__() def __eq__(self, other): if HashKey._crasher is not None and HashKey._crasher.error_on_eq: raise EqError return super().__eq__(other) def __repr__(self, other): if HashKey._crasher is not None and HashKey._crasher.error_on_repr: raise ReprError return super().__eq__(other) class HashKeyCrasher: def __init__(self, *, error_on_hash=False, error_on_eq=False, error_on_repr=False): self.error_on_hash = error_on_hash self.error_on_eq = error_on_eq self.error_on_repr = error_on_repr def __enter__(self): if HashKey._crasher is not None: raise RuntimeError('cannot nest crashers') HashKey._crasher = self def __exit__(self, *exc): HashKey._crasher = None class HashingError(Exception): pass class EqError(Exception): pass class ReprError(Exception): pass