Searched defs:sort_keys (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython3/Modules/
H A D_json.c48 PyObject *sort_keys; member in struct:_PyEncoderObject
61 {"sort_keys", T_OBJECT, offsetof(PyEncoderObject, sort_keys), READONLY, "sort_keys"},
1327 s->sort_keys = NULL;
1337 static char *kwlist[] = {"markers", "default", "encoder", "indent", "key_separator", "item_separator", "sort_keys", "skipkeys", "allow_nan", NULL};
1341 PyObject *item_separator, *sort_keys, *skipkeys; local
1350 &sort_keys, &skipkeys, &allow_nan))
1366 s->sort_keys = sort_keys;
[all...]
/external/python/cpython2/Modules/
H A D_json.c63 PyObject *sort_keys; member in struct:_PyEncoderObject
76 {"sort_keys", T_OBJECT, offsetof(PyEncoderObject, sort_keys), READONLY, "sort_keys"},
1850 s->sort_keys = NULL;
1860 static char *kwlist[] = {"markers", "default", "encoder", "indent", "key_separator", "item_separator", "sort_keys", "skipkeys", "allow_nan", NULL};
1864 PyObject *item_separator, *sort_keys, *skipkeys, *allow_nan_obj; local
1872 &sort_keys, &skipkeys, &allow_nan_obj))
1892 s->sort_keys = sort_keys;
[all...]

Completed in 125 milliseconds