PageRenderTime 23ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/pyjs/tests/test020.py

http://pyjamas.googlecode.com/
Python | 6 lines | 5 code | 1 blank | 0 comment | 0 complexity | ad4e381a9bade1ed7a4d8c8edb8d5279 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  1. import ui
  2. class DayCheckBox(ui.CheckBox):
  3. def __init__(self, caption, day):
  4. ui.CheckBox.__init__(self, caption)
  5. self.day = day