diff options
author | Georg Brandl <georg@python.org> | 2008-01-07 18:10:24 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-07 18:10:24 (GMT) |
commit | 52d168a9950cc0933b6f650e5fdebfad13347e88 (patch) | |
tree | 513a176653aeddee22e0d0b3571360b7d4cc21a4 /Doc | |
parent | 22ec03c286094298227b2068fa02bcafedf76860 (diff) | |
download | cpython-52d168a9950cc0933b6f650e5fdebfad13347e88.zip cpython-52d168a9950cc0933b6f650e5fdebfad13347e88.tar.gz cpython-52d168a9950cc0933b6f650e5fdebfad13347e88.tar.bz2 |
Remove traces of Py_USING_UNICODE and Unicode-specific conditionals in configure.
Rename --enable-unicode to --with-wide-unicode; the default is still not wide.
Diffstat (limited to 'Doc')
-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 72d6734..ae79049 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -751,7 +751,7 @@ Encodings and Unicode Unicode strings are stored internally as sequences of codepoints (to be precise as :ctype:`Py_UNICODE` arrays). Depending on the way Python is compiled (either -via :option:`--enable-unicode=ucs2` or :option:`--enable-unicode=ucs4`, with the +via :option:`--without-wide-unicode` or :option:`--with-wide-unicode`, with the former being the default) :ctype:`Py_UNICODE` is either a 16-bit or 32-bit data type. Once a Unicode object is used outside of CPU and memory, CPU endianness and how these arrays are stored as bytes become an issue. Transforming a |