Lines Matching defs:sort_keys
60 char sort_keys;
73 {"sort_keys", T_BOOL, offsetof(PyEncoderObject, sort_keys), READONLY, "sort_keys"},
1240 static char *kwlist[] = {"markers", "default", "encoder", "indent", "key_separator", "item_separator", "sort_keys", "skipkeys", "allow_nan", NULL};
1245 int sort_keys, skipkeys, allow_nan;
1250 &sort_keys, &skipkeys, &allow_nan))
1270 s->sort_keys = sort_keys;
1552 if (s->sort_keys && PyList_Sort(items) < 0) {