mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-06 03:50:06 +01:00
12 lines
281 B
Python
12 lines
281 B
Python
|
|
# Normal usage
|
|
wait = wx.BusyCursor()
|
|
for i in range(10000):
|
|
DoACalculation()
|
|
del wait
|
|
|
|
# It can be used as a context manager too
|
|
with wx.BusyCursor():
|
|
for i in range(10000):
|
|
DoACalculation()
|