Changes between Initial Version and Version 1 of Ticket #27003, comment 5


Ignore:
Timestamp:
Aug 3, 2016, 12:50:20 PM (8 years ago)
Author:
Brandon Chinn

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27003, comment 5

    initial v1  
    1010        return value
    1111    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
    1316}}}
Back to Top