mirror of
https://github.com/ValveSoftware/halflife.git
synced 2025-02-13 15:18:54 +03:00
12 lines
306 B
Python
12 lines
306 B
Python
|
import sys
|
||
|
import json
|
||
|
import typing as T
|
||
|
from . import meson_exe
|
||
|
|
||
|
# This script is used by run_unittests.py to verify we don't load too many
|
||
|
# modules when executing a wrapped command.
|
||
|
def run(args: T.List[str]) -> int:
|
||
|
meson_exe.run(args)
|
||
|
print(json.dumps(list(sys.modules.keys())))
|
||
|
return 0
|