PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /proc/self/root/opt/saltstack/salt/extras-3.10/pr2modules/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //proc/self/root/opt/saltstack/salt/extras-3.10/pr2modules/__init__.py |
''' 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