Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
20eae69a
Commit
20eae69a
authored
Oct 07, 2002
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document PEP 293.
parent
bd5e38d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
1 deletion
+21
-1
Doc/whatsnew/whatsnew23.tex
Doc/whatsnew/whatsnew23.tex
+21
-1
No files found.
Doc/whatsnew/whatsnew23.tex
View file @
20eae69a
...
...
@@ -492,7 +492,27 @@ strings \samp{True} and \samp{False} instead of \samp{1} and \samp{0}.
%======================================================================
\section
{
PEP 293: Codec Error Handling Callbacks
}
XXX write this section
When encoding a Unicode string into a byte string, unencodable
characters may be encountered. So far, Python allowed to specify the
error processing as either ``strict'' (raise
\code
{
UnicodeError
}
,
default), ``ignore'' (skip the character), or ``replace'' (with
question mark). It may be desirable to specify an alternative
processing of the error, e.g. by inserting an XML character reference
or HTML entity reference into the converted string.
Python now has a flexible framework to add additional processing
strategies; new error handlers can be added with
\function
{
codecs.register
_
error
}
. Codecs then can access the error
handler with
\code
{
codecs.lookup
_
error
}
. An equivalent C API has been
added for codecs written in C. The error handler gets various state
information, such as the string being converted, the position in the
string where the error was detected, and the target encoding. It can
then either raise an exception, or return a replacement string.
Two additional error handlers have been implemented using this
framework: ``backslashreplace'' using Python backslash quoting to
represent the unencodable character, and ``xmlcharrefreplace'' emits
XML character references.
\begin{seealso}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment