MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / _process_thread

Function _process_thread

PySimpleGUI/PySimpleGUI.py:22194–22202  ·  view source on GitHub ↗
(*args)

Source from the content-addressed store, hash-verified

22192#####################################################################
22193
22194def _process_thread(*args):
22195 global __shell_process__
22196
22197 # start running the command with arugments
22198 try:
22199 __shell_process__ = subprocess.run(args, shell=True, stdout=subprocess.PIPE)
22200 except Exception as e:
22201 print('Exception running process args = {}'.format(args))
22202 __shell_process__ = None
22203
22204
22205def shell_with_animation(command, args=None, image_source=DEFAULT_BASE64_LOADING_GIF, message=None, background_color=None, text_color=None, font=None,

Callers

nothing calls this directly

Calls 1

runMethod · 0.45

Tested by

no test coverage detected