Server : Apache System : Linux iad1-shared-b8-43 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64 User : dh_edsupp ( 6597262) PHP Version : 8.2.26 Disable Function : NONE Directory : /opt/prometheus-monitoring-scripts/lib/python3.10/site-packages/setuptools/compat/ |
Upload File : |
import sys __all__ = ['tomllib'] if sys.version_info >= (3, 11): import tomllib else: # pragma: no cover import tomli as tomllib if sys.version_info >= (3, 11): def add_note(ex, note): ex.add_note(note) else: # pragma: no cover def add_note(ex, note): vars(ex).setdefault('__notes__', []).append(note)