Variables | |
dont_write_bytecode | |
file_path = os.path.expanduser(sys.argv[1]) | |
module = importlib.util.module_from_spec(spec) | |
string | module_name = "__main__" |
spec = importlib.util.spec_from_file_location(module_name, file_path) | |
launcher.dont_write_bytecode |
Definition at line 24 of file launcher.py.
launcher.file_path = os.path.expanduser(sys.argv[1]) |
Definition at line 12 of file launcher.py.
launcher.module = importlib.util.module_from_spec(spec) |
Definition at line 30 of file launcher.py.
string launcher.module_name = "__main__" |
Definition at line 17 of file launcher.py.
launcher.spec = importlib.util.spec_from_file_location(module_name, file_path) |
Definition at line 29 of file launcher.py.