• Home
  • Raw
  • Download

Lines Matching refs:handling

22 manages the codec and error handling lookup process.
31 *Errors* may be given to set the desired error handling scheme. The
35 information on codec error handling.
44 *Errors* may be given to set the desired error handling scheme. The
48 information on codec error handling.
108 as well as any other error handling name defined via :func:`register_error`.
182 Register the error handling function *error_handler* under the name *name*.
209 Implements the ``strict`` error handling: each encoding or decoding error
215 Implements the ``replace`` error handling: malformed data is replaced with a
222 Implements the ``ignore`` error handling: malformed data is ignored and
228 Implements the ``xmlcharrefreplace`` error handling (for encoding only): the
234 Implements the ``backslashreplace`` error handling (for encoding only): the
262 *errors* may be given to define the error handling. It defaults to ``'strict'``
281 *errors* may be given to define the error handling. It defaults to ``'strict'``,
343 To simplify and standardize error handling, the :meth:`~Codec.encode` and
344 :meth:`~Codec.decode` methods may implement different error handling schemes by
391 *errors* defines the error handling to apply. It defaults to ``'strict'``
392 handling.
412 *errors* defines the error handling to apply. It defaults to ``'strict'``
413 handling.
456 The :class:`IncrementalEncoder` may implement different error handling schemes
471 handling strategies during the lifetime of the :class:`IncrementalEncoder`
508 The :class:`IncrementalDecoder` may implement different error handling schemes
519 handling strategies during the lifetime of the :class:`IncrementalDecoder`
533 at the end of the input) it must initiate error handling just like in the
567 The :class:`StreamWriter` may implement different error handling schemes by
582 handling strategies during the lifetime of the :class:`StreamWriter` object.
632 The :class:`StreamReader` may implement different error handling schemes by
643 handling strategies during the lifetime of the :class:`StreamReader` object.
735 :class:`StreamReader` and :class:`StreamWriter` interface resp. Error handling
776 Error handling is done in the same way as defined for the stream readers and