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

Function my_long_func

DemoPrograms/Demo_Long_Operations.py:50–61  ·  view source on GitHub ↗

This is your function that takes a long time :param count: :param a: :param b: :return:

(count, a=1, b=2)

Source from the content-addressed store, hash-verified

48
49
50def my_long_func(count, a=1, b=2):
51 """
52 This is your function that takes a long time
53 :param count:
54 :param a:
55 :param b:
56 :return:
57 """
58 for i in range(count):
59 print(i, a, b)
60 time.sleep(.5)
61 return 'DONE!'
62
63
64'''

Callers 2

mainFunction · 0.85
old_mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected