Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
future /
types /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2018-02-22 00:25
__init__.py
6.68
KB
-rw-r--r--
2014-11-21 12:52
newbytes.py
14.56
KB
-rw-r--r--
2015-07-25 12:34
newdict.py
3.04
KB
-rw-r--r--
2014-11-21 12:52
newint.py
12.92
KB
-rw-r--r--
2015-07-25 12:34
newlist.py
2.23
KB
-rw-r--r--
2014-11-21 12:52
newmemoryview.py
654
B
-rw-r--r--
2014-11-21 12:52
newobject.py
3.65
KB
-rw-r--r--
2014-11-21 12:52
newopen.py
811
B
-rw-r--r--
2014-11-21 12:52
newrange.py
4.92
KB
-rw-r--r--
2015-09-11 09:22
newstr.py
14.83
KB
-rw-r--r--
2014-11-21 12:52
Save
Rename
""" 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']