diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-27 13:52:50 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-27 13:52:50 (GMT) |
commit | 04eef97a8ac1089bb9f0227a2be38f07c9972268 (patch) | |
tree | 5821695e96f6a2bd699a77583a6e6018ee19c307 | |
parent | c92fc8261dd89cfc1d11a5aee28ed28df4579346 (diff) | |
download | cpython-04eef97a8ac1089bb9f0227a2be38f07c9972268.zip cpython-04eef97a8ac1089bb9f0227a2be38f07c9972268.tar.gz cpython-04eef97a8ac1089bb9f0227a2be38f07c9972268.tar.bz2 |
Merged revisions 78489 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78489 | ezio.melotti | 2010-02-27 15:50:35 +0200 (Sat, 27 Feb 2010) | 1 line
Fix missing parenthesis.
........
-rw-r--r-- | Doc/library/codecs.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index ef486f7..d3b1025 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -78,7 +78,7 @@ It defines the following functions: * ``'xmlcharrefreplace'``: replace with the appropriate XML character reference (for encoding only) * ``'backslashreplace'``: replace with backslashed escape sequences (for - encoding only + encoding only) as well as any other error handling name defined via :func:`register_error`. |