diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2009-06-29 06:35:26 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2009-06-29 06:35:26 (GMT) |
commit | 3d2eca0edaa864edaefd77988d103d2b5179e781 (patch) | |
tree | 3e0d6928a53112551ae0342699252a51e71ba3d0 | |
parent | 0a3faef5f20ca45247ef3174912354859bba174a (diff) | |
download | cpython-3d2eca0edaa864edaefd77988d103d2b5179e781.zip cpython-3d2eca0edaa864edaefd77988d103d2b5179e781.tar.gz cpython-3d2eca0edaa864edaefd77988d103d2b5179e781.tar.bz2 |
Link to PEP 383.
-rw-r--r-- | Doc/library/codecs.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index e3f98ef..53437ce 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -322,7 +322,8 @@ and implemented by all standard Python codecs: | ``'backslashreplace'`` | Replace with backslashed escape sequences | | | (only for encoding). | +-------------------------+-----------------------------------------------+ -| ``'surrogateescape'`` | Replace byte with surrogate U+DCxx. | +| ``'surrogateescape'`` | Replace byte with surrogate U+DCxx, as defined| +| | in :pep:`383`. | +-------------------------+-----------------------------------------------+ In addition, the following error handlers are specific to a single codec: |