second commit
This commit is contained in:
17
env/lib/python3.11/site-packages/pygments/__main__.py
vendored
Normal file
17
env/lib/python3.11/site-packages/pygments/__main__.py
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
"""
|
||||
pygments.__main__
|
||||
~~~~~~~~~~~~~~~~~
|
||||
|
||||
Main entry point for ``python -m pygments``.
|
||||
|
||||
:copyright: Copyright 2006-2024 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)
|
Reference in New Issue
Block a user