Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/django/django
/ loads
Method
loads
django/core/signing.py:140–141 ·
view source on GitHub ↗
(self, data)
Source
from the content-addressed store, hash-verified
138
return
json.dumps(obj, separators=(
","
,
":"
)).encode(
"latin-1"
)
139
140
def
loads(self, data):
141
return
json.loads(data.decode(
"latin-1"
))
142
143
144
def
dumps(
Callers
15
unsign_object
Method · 0.45
_parse_json
Method · 0.45
_confirm_picklable
Method · 0.45
is_pickable
Function · 0.45
assertJSONEqual
Method · 0.45
assertJSONNotEqual
Method · 0.45
to_python
Method · 0.45
bound_data
Method · 0.45
to_python
Method · 0.45
from_db_value
Method · 0.45
resolve_expression_parameter
Method · 0.45
process_rhs
Method · 0.45
Calls
1
decode
Method · 0.45
Tested by
15
is_pickable
Function · 0.36
assertJSONEqual
Method · 0.36
assertJSONNotEqual
Method · 0.36
test_picklable
Method · 0.36
test_success
Method · 0.36
test_custom_to_field
Method · 0.36
test_custom_to_field_custom_pk
Method · 0.36
test_to_field_resolution_with_mti
Method · 0.36
test_to_field_resolution_with_fk_pk
Method · 0.36
test_limit_choices_to
Method · 0.36
test_search_use_distinct
Method · 0.36
test_get_paginator
Method · 0.36