This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mark
Recipients gpolo, mark, roger.serwy, terry.reedy
Date 2012-06-23.16:55:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340470520.51.0.448365510878.issue15133@psf.upfronthosting.co.za>
In-reply-to
Content
Did you mean formal test code? Or just an example like this:

from tkinter import *
tk = Tk()
bv = BooleanVar()
print(bv.get(), type(bv.get()))
bv.set(True)
print(bv.get(), type(bv.get()))
bv.set(False)
print(bv.get(), type(bv.get()))

### output ###
0 <class 'int'>
1 <class 'int'>
0 <class 'int'>
History
Date User Action Args
2012-06-23 16:55:20marksetrecipients: + mark, terry.reedy, gpolo, roger.serwy
2012-06-23 16:55:20marksetmessageid: <1340470520.51.0.448365510878.issue15133@psf.upfronthosting.co.za>
2012-06-23 16:55:19marklinkissue15133 messages
2012-06-23 16:55:19markcreate