[Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py

Guido van Rossum guido@cnri.reston.va.us
Tue, 16 Mar 1999 16:54:53 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Lib/lib-tk
In directory eric:/projects/python/develop/guido/src/Lib/lib-tk

Modified Files:
	Tkinter.py 
Log Message:
Bug reported by Jim Robinson:

An attempt to execute grid_slaves with arguments (0,0) results in
*all* of the slaves being returned, not just the slave associated with
row 0, column 0.  This is because the test for arguments in the method
does not test to see if row (and column) does not equal None, but
rather just whether is evaluates to non-false.  A value of 0 fails
this test.