Files
2018-02-13 17:13:44 -08:00

10 lines
219 B
Python

with wx.WindowDisabler():
wait = wx.BusyInfo("Please wait, working...")
for i in range(100000):
DoACalculation()
if not (i % 1000):
wx.GetApp().Yield()