Message163644
| 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:20 | mark | set | recipients:
+ mark, terry.reedy, gpolo, roger.serwy |
| 2012年06月23日 16:55:20 | mark | set | messageid: <1340470520.51.0.448365510878.issue15133@psf.upfronthosting.co.za> |
| 2012年06月23日 16:55:19 | mark | link | issue15133 messages |
| 2012年06月23日 16:55:19 | mark | create |
|