@@ -10,7 +10,7 @@ msgid ""
1010msgstr ""
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 ""
12481248msgstr ""
12491249
12501250#: ../../library/functions.rst:600
1251+ #, fuzzy
12511252msgid ""
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:"
0 commit comments