Hackfut Security File Manager
Current Path:
/lib/python3.6/site-packages/acme
lib
/
python3.6
/
site-packages
/
acme
/
📁
..
📄
__init__.py
(726 B)
📁
__pycache__
📄
challenges.py
(21.19 KB)
📄
client.py
(52.86 KB)
📄
crypto_util.py
(16.34 KB)
📄
errors.py
(4.21 KB)
📄
fields.py
(1.84 KB)
📄
jws.py
(2.33 KB)
📄
magic_typing.py
(595 B)
📄
messages.py
(24.74 KB)
📄
mixins.py
(2.78 KB)
📄
standalone.py
(12.83 KB)
📄
util.py
(303 B)
Editing: magic_typing.py
"""Simple shim around the typing module. This was useful when this code supported Python 2 and typing wasn't always available. This code is being kept for now for backwards compatibility. """ import warnings from typing import * # pylint: disable=wildcard-import, unused-wildcard-import from typing import Any warnings.warn("acme.magic_typing is deprecated and will be removed in a future release.", DeprecationWarning) class TypingClass: """Ignore import errors by getting anything""" def __getattr__(self, name: str) -> Any: return None # pragma: no cover
Upload File
Create Folder