Changes between Initial Version and Version 1 of Ticket #27003, comment 5
- Timestamp:
- Aug 3, 2016, 12:50:20 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27003, comment 5
initial v1 10 10 return value 11 11 val = json.loads(value) 12 # parse val and convert all strings to JsonStr 12 if isinstance(val, str): 13 return JsonStr(val) 14 else: 15 return val 13 16 }}}