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

Function running_windows

PySimpleGUI/PySimpleGUI.py:298–307  ·  view source on GitHub ↗

Determines the OS is Windows by using sys.platform Returns True if Windows :return: True if sys.platform indicates running Windows :rtype: (bool)

()

Source from the content-addressed store, hash-verified

296
297
298def running_windows():
299 """
300 Determines the OS is Windows by using sys.platform
301
302 Returns True if Windows
303
304 :return: True if sys.platform indicates running Windows
305 :rtype: (bool)
306 """
307 return sys.platform.startswith('win')
308
309
310def running_trinket():

Callers 6

PySimpleGUI.pyFile · 0.70
bring_to_frontMethod · 0.70
set_optionsFunction · 0.70
_compute_filenameMethod · 0.70
get_versionsFunction · 0.70
_create_main_windowFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected