]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Bug reported by Jim Robinson:
authorGuido van Rossum <guido@python.org>
Tue, 16 Mar 1999 21:54:50 +0000 (21:54 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 16 Mar 1999 21:54:50 +0000 (21:54 +0000)
commiteb354b31e5cd5bcd1aa1350799966b20778d9592
treeff422d0087ffca330e4fc7a4c5091bbd6791eacd
parent8d2c0c2ab4e5f5d4c930c344e0cdc7b800f6c17a
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.
Lib/lib-tk/Tkinter.py