From: Alex T. <ale...@us...> - 2006-01-14 14:27:42
|
Update of /cvsroot/pythoncard/PythonCard/samples/sudoku In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11810 Modified Files: sudoku.py Log Message: Removed call to wx.SafeYield. Operations complete within 1-2 seconds, so not really necessary, and this avoids recursive calls due to two rapid clicks on same button. Index: sudoku.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/sudoku/sudoku.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** sudoku.py 2 Nov 2005 13:25:35 -0000 1.2 --- sudoku.py 14 Jan 2006 14:27:33 -0000 1.3 *************** *** 415,419 **** sqr.state = 'i' self.fillin(sqr, i,j) - wx.SafeYield(self) def soles(self): --- 415,418 ---- |