Skip to content

Commit 5f5b3d4

Browse files
sync with cpython 7297d3a9
1 parent 0aaf8d2 commit 5f5b3d4

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

library/functions.po

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ msgid ""
1010
msgstr ""
1111
"Project-Id-Version: Python 3.14\n"
1212
"Report-Msgid-Bugs-To: \n"
13-
"POT-Creation-Date: 2025-12-01 00:17+0000\n"
13+
"POT-Creation-Date: 2025-12-14 00:16+0000\n"
1414
"PO-Revision-Date: 2024-05-06 17:06+0800\n"
1515
"Last-Translator: KNChiu <y9760210@gmail.com>\n"
1616
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -1248,18 +1248,19 @@ msgid ""
12481248
msgstr ""
12491249

12501250
#: ../../library/functions.rst:600
1251+
#, fuzzy
12511252
msgid ""
1252-
"The *expression* argument is parsed and evaluated as a Python expression "
1253+
"The *source* argument is parsed and evaluated as a Python expression "
12531254
"(technically speaking, a condition list) using the *globals* and *locals* "
12541255
"mappings as global and local namespace. If the *globals* dictionary is "
12551256
"present and does not contain a value for the key ``__builtins__``, a "
12561257
"reference to the dictionary of the built-in module :mod:`builtins` is "
1257-
"inserted under that key before *expression* is parsed. That way you can "
1258-
"control what builtins are available to the executed code by inserting your "
1259-
"own ``__builtins__`` dictionary into *globals* before passing it to :func:"
1258+
"inserted under that key before *source* is parsed. That way you can control "
1259+
"what builtins are available to the executed code by inserting your own "
1260+
"``__builtins__`` dictionary into *globals* before passing it to :func:"
12601261
"`eval`. If the *locals* mapping is omitted it defaults to the *globals* "
1261-
"dictionary. If both mappings are omitted, the expression is executed with "
1262-
"the *globals* and *locals* in the environment where :func:`eval` is called. "
1262+
"dictionary. If both mappings are omitted, the source is executed with the "
1263+
"*globals* and *locals* in the environment where :func:`eval` is called. "
12631264
"Note, *eval()* will only have access to the :term:`nested scopes <nested "
12641265
"scope>` (non-locals) in the enclosing environment if they are already "
12651266
"referenced in the scope that is calling :func:`eval` (e.g. via a :keyword:"

reference/compound_stmts.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ msgid ""
66
msgstr ""
77
"Project-Id-Version: Python 3.14\n"
88
"Report-Msgid-Bugs-To: \n"
9-
"POT-Creation-Date: 2025-11-30 00:16+0000\n"
9+
"POT-Creation-Date: 2025-12-14 00:16+0000\n"
1010
"PO-Revision-Date: 2018-05-23 16:17+0000\n"
1111
"Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n"
1212
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -445,13 +445,14 @@ msgid ""
445445
msgstr ""
446446

447447
#: ../../reference/compound_stmts.rst:386
448+
#, fuzzy
448449
msgid ""
449450
">>> try:\n"
450451
"... raise BlockingIOError\n"
451452
"... except* BlockingIOError as e:\n"
452453
"... print(repr(e))\n"
453454
"...\n"
454-
"ExceptionGroup('', (BlockingIOError()))"
455+
"ExceptionGroup('', (BlockingIOError(),))"
455456
msgstr ""
456457
">>> try:\n"
457458
"... raise BlockingIOError\n"

sphinx.po

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2025-11-24 00:15+0000\n"
11+
"POT-Creation-Date: 2025-12-14 00:16+0000\n"
1212
"PO-Revision-Date: 2023-03-15 10:19+0800\n"
1313
"Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n"
1414
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -40,6 +40,11 @@ msgstr "回報錯誤"
4040
msgid "Show source"
4141
msgstr "顯示原始碼"
4242

43+
#: ../../tools/templates/customsourcelink.html:14
44+
#, fuzzy
45+
msgid "Show translation source"
46+
msgstr "顯示原始碼"
47+
4348
#: ../../tools/templates/download.html:2
4449
#: ../../tools/templates/indexsidebar.html:1
4550
msgid "Download"

0 commit comments

Comments
 (0)