mirror of
https://github.com/python/cpython.git
synced 2025-09-14 04:37:29 +00:00
9 lines
264 B
Python
9 lines
264 B
Python
# This is a script equivalent of running "python -m test.test_c_globals.cg".
|
|
|
|
from c_globals.__main__ import parse_args, main
|
|
|
|
|
|
# This is effectively copied from cg/__main__.py:
|
|
if __name__ == '__main__':
|
|
cmd, cmdkwargs = parse_args()
|
|
main(cmd, cmdkwargs)
|