Files
prop-data-guard/backend/.venv/lib/python3.9/site-packages/pygments/__main__.py
T
2026-04-22 17:07:33 +08:00

18 lines
351 B
Python

"""
pygments.__main__
~~~~~~~~~~~~~~~~~
Main entry point for ``python -m pygments``.
:copyright: Copyright 2006-present by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
import sys
import pygments.cmdline
try:
sys.exit(pygments.cmdline.main(sys.argv))
except KeyboardInterrupt:
sys.exit(1)