|
25 | 25 | <span style="font-weight: normal;"> |
26 | 26 | apply coupon for discount: |
27 | 27 | </span> |
28 | | - A2E4F6B1B75EC3D90133. |
| 28 | + 9AF99B123C49D51EB547. |
29 | 29 | </div> |
30 | | - <button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=A2E4F6B1B75EC3D90133','_blank');"> |
| 30 | + <button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=9AF99B123C49D51EB547','_blank');"> |
31 | 31 | click here to visit course page |
32 | 32 | </button> |
33 | 33 | </div> |
@@ -13685,15 +13685,15 @@ IMPORTANT - This method uses THREADS... this means you CANNOT make any PySimpleG |
13685 | 13685 | the function you provide with the exception of one function, Window.write_event_value. |
13686 | 13686 |
|
13687 | 13687 | ``` |
13688 | | -perform_long_operation(func, end_key) |
| 13688 | +perform_long_operation(func, end_key = None) |
13689 | 13689 | ``` |
13690 | 13690 |
|
13691 | 13691 | Parameter Descriptions: |
13692 | 13692 |
|
13693 | 13693 | |Type|Name|Meaning| |
13694 | 13694 | |--|--|--| |
13695 | | -| Any | func | A lambda or a function name with no parms | |
13696 | | -| Any | end_key | The key that will be generated when the function returns | |
| 13695 | +| Any | func | A lambda or a function name with no parms | |
| 13696 | +| (Any or None) | end_key | Optional key that will be generated when the function returns | |
13697 | 13697 | | threading.Thread | **RETURN** | The id of the thread |
13698 | 13698 |
|
13699 | 13699 | ### read |
@@ -13907,15 +13907,15 @@ IMPORTANT - This method uses THREADS... this means you CANNOT make any PySimpleG |
13907 | 13907 | the function you provide with the exception of one function, Window.write_event_value. |
13908 | 13908 |
|
13909 | 13909 | ``` |
13910 | | -start_thread(func, end_key) |
| 13910 | +start_thread(func, end_key = None) |
13911 | 13911 | ``` |
13912 | 13912 |
|
13913 | 13913 | Parameter Descriptions: |
13914 | 13914 |
|
13915 | 13915 | |Type|Name|Meaning| |
13916 | 13916 | |--|--|--| |
13917 | | -| Any | func | A lambda or a function name with no parms | |
13918 | | -| Any | end_key | The key that will be generated when the function returns | |
| 13917 | +| Any | func | A lambda or a function name with no parms | |
| 13918 | +| (Any or None) | end_key | Optional key that will be generated when the function returns | |
13919 | 13919 | | threading.Thread | **RETURN** | The id of the thread |
13920 | 13920 |
|
13921 | 13921 | ### timer_get_active_timers |
|
0 commit comments