diff options
Diffstat (limited to 'Doc/library/codecs.rst')
-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 1971136..dcfc46f 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -788,7 +788,7 @@ Encodings and Unicode Strings are stored internally as sequences of codepoints (to be precise as :c:type:`Py_UNICODE` arrays). Depending on the way Python is compiled (either -via :option:`--without-wide-unicode` or :option:`--with-wide-unicode`, with the +via ``--without-wide-unicode`` or ``--with-wide-unicode``, with the former being the default) :c:type:`Py_UNICODE` is either a 16-bit or 32-bit data type. Once a string object is used outside of CPU and memory, CPU endianness and how these arrays are stored as bytes become an issue. Transforming a |