mirror of
https://github.com/python/cpython.git
synced 2025-08-15 06:10:47 +00:00
[3.12] Fix sort order for "locale encoding" glossary item (GH-115794) (#117102)
Co-authored-by: Carol Willing <carolcode@willingconsulting.com> Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
This commit is contained in:
parent
d69c51520e
commit
e84a8f37b1
1 changed files with 12 additions and 12 deletions
|
@ -726,18 +726,6 @@ Glossary
|
||||||
thread removes *key* from *mapping* after the test, but before the lookup.
|
thread removes *key* from *mapping* after the test, but before the lookup.
|
||||||
This issue can be solved with locks or by using the EAFP approach.
|
This issue can be solved with locks or by using the EAFP approach.
|
||||||
|
|
||||||
locale encoding
|
|
||||||
On Unix, it is the encoding of the LC_CTYPE locale. It can be set with
|
|
||||||
:func:`locale.setlocale(locale.LC_CTYPE, new_locale) <locale.setlocale>`.
|
|
||||||
|
|
||||||
On Windows, it is the ANSI code page (ex: ``"cp1252"``).
|
|
||||||
|
|
||||||
On Android and VxWorks, Python uses ``"utf-8"`` as the locale encoding.
|
|
||||||
|
|
||||||
``locale.getencoding()`` can be used to get the locale encoding.
|
|
||||||
|
|
||||||
See also the :term:`filesystem encoding and error handler`.
|
|
||||||
|
|
||||||
list
|
list
|
||||||
A built-in Python :term:`sequence`. Despite its name it is more akin
|
A built-in Python :term:`sequence`. Despite its name it is more akin
|
||||||
to an array in other languages than to a linked list since access to
|
to an array in other languages than to a linked list since access to
|
||||||
|
@ -757,6 +745,18 @@ Glossary
|
||||||
:term:`finder`. See :pep:`302` for details and
|
:term:`finder`. See :pep:`302` for details and
|
||||||
:class:`importlib.abc.Loader` for an :term:`abstract base class`.
|
:class:`importlib.abc.Loader` for an :term:`abstract base class`.
|
||||||
|
|
||||||
|
locale encoding
|
||||||
|
On Unix, it is the encoding of the LC_CTYPE locale. It can be set with
|
||||||
|
:func:`locale.setlocale(locale.LC_CTYPE, new_locale) <locale.setlocale>`.
|
||||||
|
|
||||||
|
On Windows, it is the ANSI code page (ex: ``"cp1252"``).
|
||||||
|
|
||||||
|
On Android and VxWorks, Python uses ``"utf-8"`` as the locale encoding.
|
||||||
|
|
||||||
|
:func:`locale.getencoding` can be used to get the locale encoding.
|
||||||
|
|
||||||
|
See also the :term:`filesystem encoding and error handler`.
|
||||||
|
|
||||||
magic method
|
magic method
|
||||||
.. index:: pair: magic; method
|
.. index:: pair: magic; method
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue