Changes between Initial Version and Version 1 of Ticket #16308
- Timestamp:
- Jun 20, 2011, 11:00:50 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16308
- Property Resolution → needsinfo
- Property Status new → closed
-
Ticket #16308 – Description
initial v1 4 4 5 5 problem code : 6 {{{#!python 6 7 class CheckboxSelectMultiple(SelectMultiple): 7 8 def render(self, name, value, attrs=None, choices=()): … … 12 13 # Normalize to strings 13 14 str_values = set([force_unicode(v) for v in value]) 14 15 solustion: 15 }}} 16 solution: 17 {{{#!python 16 18 str_values = set([force_unicode(v) for v in '''eval'''(value)]) 19 }}}