diff options
author | Julien Palard <julien@palard.fr> | 2017-10-24 09:22:22 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-10-24 09:22:22 (GMT) |
commit | 809d173c2005ed76f5b6cb178a0cce3f88121883 (patch) | |
tree | 9ba2ec789b5213ce2d91a9a4066a8c739b1c78ce | |
parent | 01b5aab7bfb11ee5476ef52d24495598cbe7c99a (diff) | |
download | cpython-809d173c2005ed76f5b6cb178a0cce3f88121883.zip cpython-809d173c2005ed76f5b6cb178a0cce3f88121883.tar.gz cpython-809d173c2005ed76f5b6cb178a0cce3f88121883.tar.bz2 |
bpo-31812: Add documentation translations to What's New in Python 3.7. (GH-4064)
-rw-r--r-- | Doc/whatsnew/3.7.rst | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 5bff3a4..80f73b6 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -608,3 +608,24 @@ CPython bytecode changes * Added two new opcodes: :opcode:`LOAD_METHOD` and :opcode:`CALL_METHOD`. (Contributed by Yury Selivanov and INADA Naoki in :issue:`26110`.) + + +Documentation +============= + +.. _whatsnew37-pep545: + +PEP 545: Python Documentation Translations +------------------------------------------ + +:pep:`545` describes the process to translate Python documentation, +and two translations have been added: + +- Japanese: https://docs.python.org/ja/ and associated github + repository: https://github.com/python/python-docs-ja + +- French: https://docs.python.org/fr/ and associated github + repository: https://github.com/python/python-docs-fr + +(Contributed by Julien Palard, Inada Naoki, and Victor Stinner in +:issue:`issue26546`.) |