As part of a bigger programm i would like to show the progress my algorithm makes while running. For that purpose i display some dots (lines) on a canvas object. After drawing / end of algorithm my programm is not reactive any more, i.e. checkboxes take ages to react, and so on.
Finally i ended up with these 3 lines of code which will cause the problem:
for x in range( 1,300 ):
for y in range(1, 300):
self.__canvas.create_line(x,y,x+1,y+1 )
No other code running, gui is not reactive any more (very very slow).