id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
41,vanilla.CheckBox returning longs?,tal,tal,"I've heard reports that vanilla.CheckBox is returning longs. Here is a test:

{{{#!python
import vanilla

class Test(object):

    def __init__(self):
        self.w = vanilla.Window((200, 200))
        self.w.cb = vanilla.CheckBox((10, 10, -10, 20), ""Test"", callback=self.go)
        self.w.open()

    def go(self, sender):
        print type(sender.get()), sender.get()

Test()
}}}",defect,new,major,,vanilla,,,,
