PEP 686: Update Post-History (#2489)

This commit is contained in:
Inada Naoki 2022-03-31 15:39:24 +09:00 committed by GitHub
parent dae03bb7ec
commit d0a55d763b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 5 deletions

View File

@ -7,7 +7,8 @@ Type: Standards Track
Content-Type: text/x-rst
Created: 18-Mar-2022
Python-Version: 3.13
Post-History: `18-Mar-2022 <https://discuss.python.org/t/14435>`__
Post-History: `18-Mar-2022 <https://discuss.python.org/t/14435>`__,
`31-Mar-2022 <https://discuss.python.org/t/14737>`__
Abstract
@ -104,10 +105,10 @@ This is the guideline to fix this backward compatibility issue:
2. Use ``EncodingWarning`` (:pep:`597`) to find every places UTF-8 mode
affects.
* If ``encoding`` option is omitted, consider using ``encoding="utf-8"``
or ``encoding="locale"``.
* If ``locale.getpreferredencoding()`` is used, consider using
``"utf-8"`` or ``locale.getencoding()``.
* If ``encoding`` option is omitted, consider using ``encoding="utf-8"``
or ``encoding="locale"``.
* If ``locale.getpreferredencoding()`` is used, consider using
``"utf-8"`` or ``locale.getencoding()``.
3. Test the application with UTF-8 mode.