OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
pr2modules
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/05/2025 09:36:16 AM
rwxr-xr-x
📄
__init__.py
568 bytes
03/16/2023 12:56:30 PM
rw-r--r--
📁
__pycache__
-
03/16/2023 12:56:30 PM
rwxr-xr-x
Editing: __init__.py
Close
''' This namespace is here only to provide compatibility with 0.6.x It will be removed in 0.8.x ''' import sys import warnings # load pyroute2 entry points import pyroute2 # noqa: F401 warnings.warn( 'pr2modules namespace is deprecated, use pyroute2 instead', DeprecationWarning, ) # alias every `pyroute2` entry, in addition to the block above # # Bug-Url: https://github.com/svinota/pyroute2/issues/913 # for key, value in list(sys.modules.items()): if key.startswith("pyroute2."): sys.modules[key.replace("pyroute2", "pr2modules")] = value