Home | History | Annotate | Download | only in python2.7

Lines Matching refs:PyObject

27        PyObject *search_function
48 PyAPI_FUNC(PyObject *) _PyCodec_Lookup(
62 PyAPI_FUNC(PyObject *) PyCodec_Encode(
63 PyObject *object,
78 PyAPI_FUNC(PyObject *) PyCodec_Decode(
79 PyObject *object,
94 PyAPI_FUNC(PyObject *) PyCodec_Encoder(
100 PyAPI_FUNC(PyObject *) PyCodec_Decoder(
106 PyAPI_FUNC(PyObject *) PyCodec_IncrementalEncoder(
113 PyAPI_FUNC(PyObject *) PyCodec_IncrementalDecoder(
120 PyAPI_FUNC(PyObject *) PyCodec_StreamReader(
122 PyObject *stream,
128 PyAPI_FUNC(PyObject *) PyCodec_StreamWriter(
130 PyObject *stream,
142 PyAPI_FUNC(int) PyCodec_RegisterError(const char *name, PyObject *error);
147 PyAPI_FUNC(PyObject *) PyCodec_LookupError(const char *name);
150 PyAPI_FUNC(PyObject *) PyCodec_StrictErrors(PyObject *exc);
153 PyAPI_FUNC(PyObject *) PyCodec_IgnoreErrors(PyObject *exc);
156 PyAPI_FUNC(PyObject *) PyCodec_ReplaceErrors(PyObject *exc);
159 PyAPI_FUNC(PyObject *) PyCodec_XMLCharRefReplaceErrors(PyObject *exc);
162 PyAPI_FUNC(PyObject *) PyCodec_BackslashReplaceErrors(PyObject *exc);