module documentation

Wrapper for the builtin json module that ensures compliance with the JSON spec. REST framework should always import this wrapper module in order to maintain spec-compliant encoding/decoding. Support for non-standard features should be handled by users at the renderer and parser layer.

Function dump Undocumented
Function dumps Undocumented
Function load Undocumented
Function loads Undocumented
Function strict_constant Undocumented
@functools.wraps(json.dump)
def dump(*args, **kwargs): (source)

Undocumented

@functools.wraps(json.dumps)
def dumps(*args, **kwargs): (source)

Undocumented

@functools.wraps(json.load)
def load(*args, **kwargs): (source)

Undocumented

@functools.wraps(json.loads)
def loads(*args, **kwargs): (source)

Undocumented

def strict_constant(o): (source)

Undocumented