Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
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 /
zope /
interface /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-11-06 10:56
common
[ DIR ]
drwxr-xr-x
2025-08-05 17:14
tests
[ DIR ]
drwxr-xr-x
2025-08-05 17:14
__init__.py
3.38
KB
-rw-r--r--
2025-08-05 17:14
_compat.py
4.27
KB
-rw-r--r--
2025-08-05 17:14
_flatten.py
1.03
KB
-rw-r--r--
2025-08-05 17:14
_zope_interface_coptimizations.cpython-312-x86_64-linux-gnu.so
42.98
KB
-rw-r--r--
2025-08-05 17:14
adapter.py
35.37
KB
-rw-r--r--
2025-08-05 17:14
advice.py
3.8
KB
-rw-r--r--
2025-08-05 17:14
declarations.py
42
KB
-rw-r--r--
2025-08-05 17:14
document.py
3.97
KB
-rw-r--r--
2025-08-05 17:14
exceptions.py
8.43
KB
-rw-r--r--
2025-08-05 17:14
interface.py
37.92
KB
-rw-r--r--
2025-08-05 17:14
interfaces.py
48.95
KB
-rw-r--r--
2025-08-05 17:14
registry.py
25.22
KB
-rw-r--r--
2025-08-05 17:14
ro.py
23.59
KB
-rw-r--r--
2025-08-05 17:14
verify.py
6.99
KB
-rw-r--r--
2025-08-05 17:14
Save
Rename
############################################################################## # # Copyright (c) 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Adapter-style interface registry See Adapter class. """ from zope.interface import Declaration def _flatten(implements, include_None=0): try: r = implements.flattened() except AttributeError: if implements is None: r=() else: r = Declaration(implements).flattened() if not include_None: return r r = list(r) r.append(None) return r