Home | History | Annotate | Download | only in simplejson

Lines Matching refs:dct

148 encoder_listencode_dict(PyEncoderObject *s, PyObject *rval, PyObject *dct, Py_ssize_t indent_level);
2319 encoder_listencode_dict(PyEncoderObject *s, PyObject *rval, PyObject *dct, Py_ssize_t indent_level)
2321 /* Encode Python dict dct a JSON term, rval is a PyList */
2343 if (PyDict_Size(dct) == 0)
2348 ident = PyLong_FromVoidPtr(dct);
2357 if (PyDict_SetItem(s->markers, ident, dct)) {
2376 if (PyDict_CheckExact(dct))
2377 items = PyDict_Items(dct);
2379 items = PyMapping_Items(dct);
2385 if (PyDict_CheckExact(dct))
2386 items = PyDict_Keys(dct);
2388 items = PyMapping_Keys(dct);
2401 value = PyDict_GetItem(dct, key);
2410 if (PyDict_CheckExact(dct))
2411 items = PyDict_Items(dct);
2413 items = PyMapping_Items(dct);