Commit 220a77f5 by Jason Rhinelander

Endian wording fix

parent aee409dc
...@@ -173,9 +173,9 @@ Wide character strings ...@@ -173,9 +173,9 @@ Wide character strings
When a Python ``str`` is passed to a C++ function expecting ``std::wstring``, When a Python ``str`` is passed to a C++ function expecting ``std::wstring``,
``wchar_t*``, ``std::u16string`` or ``std::u32string``, the ``str`` will be ``wchar_t*``, ``std::u16string`` or ``std::u32string``, the ``str`` will be
encoded to UTF-16 or UTF-32 depending on how the C++ compiler implements each encoded to UTF-16 or UTF-32 depending on how the C++ compiler implements each
type, in the platform's endian. When strings of these types are returned, they type, in the platform's native endianness. When strings of these types are
are assumed to contain valid UTF-16 or UTF-32, and will be decoded to Python returned, they are assumed to contain valid UTF-16 or UTF-32, and will be
``str``. decoded to Python ``str``.
.. code-block:: c++ .. code-block:: c++
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment