Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
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 /
sphinx /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
builders
[ DIR ]
drwxr-xr-x
cmd
[ DIR ]
drwxr-xr-x
directives
[ DIR ]
drwxr-xr-x
domains
[ DIR ]
drwxr-xr-x
environment
[ DIR ]
drwxr-xr-x
ext
[ DIR ]
drwxr-xr-x
locale
[ DIR ]
drwxr-xr-x
pycode
[ DIR ]
drwxr-xr-x
search
[ DIR ]
drwxr-xr-x
testing
[ DIR ]
drwxr-xr-x
texinputs_win
[ DIR ]
drwxr-xr-x
transforms
[ DIR ]
drwxr-xr-x
util
[ DIR ]
drwxr-xr-x
writers
[ DIR ]
drwxr-xr-x
__init__.py
2.09
KB
-rw-r--r--
__main__.py
280
B
-rw-r--r--
addnodes.py
17.37
KB
-rw-r--r--
application.py
53.34
KB
-rw-r--r--
config.py
19.92
KB
-rw-r--r--
deprecation.py
2.89
KB
-rw-r--r--
errors.py
3.5
KB
-rw-r--r--
events.py
4.14
KB
-rw-r--r--
extension.py
2.75
KB
-rw-r--r--
highlighting.py
6.41
KB
-rw-r--r--
io.py
6.39
KB
-rw-r--r--
jinja2glue.py
7.02
KB
-rw-r--r--
parsers.py
3.81
KB
-rw-r--r--
project.py
3.45
KB
-rw-r--r--
py.typed
0
B
-rw-r--r--
pygments_styles.py
2.95
KB
-rw-r--r--
registry.py
21.62
KB
-rw-r--r--
roles.py
13.52
KB
-rw-r--r--
setup_command.py
6.86
KB
-rw-r--r--
theming.py
8.4
KB
-rw-r--r--
versioning.py
5.81
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : deprecation.py
""" sphinx.deprecation ~~~~~~~~~~~~~~~~~~ Sphinx deprecation classes and utilities. :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import sys import warnings from importlib import import_module from typing import Any, Dict, Type class RemovedInSphinx50Warning(DeprecationWarning): pass class RemovedInSphinx60Warning(PendingDeprecationWarning): pass RemovedInNextVersionWarning = RemovedInSphinx50Warning def deprecated_alias(modname: str, objects: Dict[str, object], warning: Type[Warning], names: Dict[str, str] = {}) -> None: module = import_module(modname) sys.modules[modname] = _ModuleWrapper( # type: ignore module, modname, objects, warning, names) class _ModuleWrapper: def __init__(self, module: Any, modname: str, objects: Dict[str, object], warning: Type[Warning], names: Dict[str, str]) -> None: self._module = module self._modname = modname self._objects = objects self._warning = warning self._names = names def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: warnings.warn( "The alias '{}.{}' is deprecated, use '{}' instead. Check CHANGES for " "Sphinx API modifications.".format(self._modname, name, canonical_name), self._warning, stacklevel=3) else: warnings.warn("{}.{} is deprecated. Check CHANGES for Sphinx " "API modifications.".format(self._modname, name), self._warning, stacklevel=3) return self._objects[name] class DeprecatedDict(dict): """A deprecated dict which warns on each access.""" def __init__(self, data: Dict, message: str, warning: Type[Warning]) -> None: self.message = message self.warning = warning super().__init__(data) def __setitem__(self, key: str, value: Any) -> None: warnings.warn(self.message, self.warning, stacklevel=2) super().__setitem__(key, value) def setdefault(self, key: str, default: Any = None) -> Any: warnings.warn(self.message, self.warning, stacklevel=2) return super().setdefault(key, default) def __getitem__(self, key: str) -> None: warnings.warn(self.message, self.warning, stacklevel=2) return super().__getitem__(key) def get(self, key: str, default: Any = None) -> Any: warnings.warn(self.message, self.warning, stacklevel=2) return super().get(key, default) def update(self, other: Dict) -> None: # type: ignore warnings.warn(self.message, self.warning, stacklevel=2) super().update(other)
Close