diff options
| author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-10 20:56:30 +0100 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-10 20:56:30 +0100 |
| commit | 9f4b1e9c50da83b51a4b0c7ee7d7dc3ef94a0cf6 (patch) | |
| tree | dc0742e3af4ceb33102cd7fe0a0deb38588d851f /Doc/library/codecs.rst | |
| parent | 240c55f721aee364f7fc341f86c5a25ab5c97095 (diff) | |
| download | cpython-git-9f4b1e9c50da83b51a4b0c7ee7d7dc3ef94a0cf6.tar.gz | |
Fix and deprecated the unicode_internal codec
unicode_internal codec uses Py_UNICODE instead of the real internal
representation (PEP 393: Py_UCS1, Py_UCS2 or Py_UCS4) for backward
compatibility.
Diffstat (limited to 'Doc/library/codecs.rst')
| -rw-r--r-- | Doc/library/codecs.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index 4523c7ff2c..a9fae95d07 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -1173,6 +1173,8 @@ particular, the following variants typically exist: | unicode_internal | | Return the internal | | | | representation of the | | | | operand | +| | | | +| | | .. deprecated:: 3.3 | +--------------------+---------+---------------------------+ The following codecs provide bytes-to-bytes mappings. |
