mirror of
https://github.com/python/cpython.git
synced 2025-10-29 04:35:05 +00:00
6 lines
94 B
Text
6 lines
94 B
Text
|
|
#!__VENV_PYTHON__
|
||
|
|
if __name__ == '__main__':
|
||
|
|
import sys, pydoc
|
||
|
|
sys.exit(pydoc.cli())
|
||
|
|
|