• Home
  • Raw
  • Download

Lines Matching full:encoding

21 .. c:function:: int PyCodec_KnownEncoding(const char *encoding)
24 the given *encoding*. This function always succeeds.
26 .. c:function:: PyObject* PyCodec_Encode(PyObject *object, const char *encoding, const char *errors)
28 Generic codec based encoding API.
31 *encoding* using the error handling method defined by *errors*. *errors* may
35 .. c:function:: PyObject* PyCodec_Decode(PyObject *object, const char *encoding, const char *errors)
40 *encoding* using the error handling method defined by *errors*. *errors* may
48 In the following functions, the *encoding* string is looked up converted to all
53 .. c:function:: PyObject* PyCodec_Encoder(const char *encoding)
55 Get an encoder function for the given *encoding*.
57 .. c:function:: PyObject* PyCodec_Decoder(const char *encoding)
59 Get a decoder function for the given *encoding*.
61 .. c:function:: PyObject* PyCodec_IncrementalEncoder(const char *encoding, const char *errors)
63 Get an :class:`~codecs.IncrementalEncoder` object for the given *encoding*.
65 .. c:function:: PyObject* PyCodec_IncrementalDecoder(const char *encoding, const char *errors)
67 Get an :class:`~codecs.IncrementalDecoder` object for the given *encoding*.
69 .. c:function:: PyObject* PyCodec_StreamReader(const char *encoding, PyObject *stream, const char *…
71 Get a :class:`~codecs.StreamReader` factory function for the given *encoding*.
73 .. c:function:: PyObject* PyCodec_StreamWriter(const char *encoding, PyObject *stream, const char *…
75 Get a :class:`~codecs.StreamWriter` factory function for the given *encoding*.
78 Registry API for Unicode encoding error handlers
95 giving the offset in the original string at which encoding/decoding should be