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 /
mock /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2018-02-22 00:25
__init__.py
146
B
-rw-r--r--
2015-07-14 04:07
__main__.py
623
B
-rw-r--r--
2015-07-09 09:45
support.py
586
B
-rw-r--r--
2015-07-14 04:07
testcallable.py
4.33
KB
-rw-r--r--
2015-07-14 04:07
testhelpers.py
27.67
KB
-rw-r--r--
2015-07-14 04:07
testmagicmethods.py
16.03
KB
-rw-r--r--
2015-07-14 04:07
testmock.py
48.58
KB
-rw-r--r--
2015-07-23 21:20
testpatch.py
53.96
KB
-rw-r--r--
2015-07-14 04:07
testsentinel.py
976
B
-rw-r--r--
2015-07-14 04:07
testwith.py
9.39
KB
-rw-r--r--
2015-07-23 21:20
Save
Rename
import sys info = sys.version_info import unittest2 try: callable = callable except NameError: def callable(obj): return hasattr(obj, '__call__') inPy3k = sys.version_info[0] == 3 with_available = sys.version_info[:2] >= (2, 5) def is_instance(obj, klass): """Version of is_instance that doesn't access __class__""" return issubclass(type(obj), klass) class SomeClass(object): class_attribute = None def wibble(self): pass class X(object): pass try: next = next except NameError: def next(obj): return obj.next()