Skip to content

Commit

Permalink
sync with cpython 8b24d042
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Dec 12, 2024
1 parent ff57a25 commit 1b40469
Show file tree
Hide file tree
Showing 3 changed files with 405 additions and 363 deletions.
43 changes: 35 additions & 8 deletions c-api/frame.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.13\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-23 07:52+0800\n"
"POT-Creation-Date: 2024-12-12 00:15+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
Expand Down Expand Up @@ -154,34 +154,61 @@ msgid ""
msgstr ""

#: ../../c-api/frame.rst:134
msgid "As part of :pep:`667`, return a proxy object for optimized scopes."
msgid ""
"As part of :pep:`667`, return an instance of :c:var:"
"`PyFrameLocalsProxy_Type`."
msgstr ""

#: ../../c-api/frame.rst:140
msgid "Return the line number that *frame* is currently executing."
msgstr ""

#: ../../c-api/frame.rst:145
#: ../../c-api/frame.rst:144
msgid "Frame Locals Proxies"
msgstr ""

#: ../../c-api/frame.rst:148
msgid ""
"The :attr:`~frame.f_locals` attribute on a :ref:`frame object <frame-"
"objects>` is an instance of a \"frame-locals proxy\". The proxy object "
"exposes a write-through view of the underlying locals dictionary for the "
"frame. This ensures that the variables exposed by ``f_locals`` are always up "
"to date with the live local variables in the frame itself."
msgstr ""

#: ../../c-api/frame.rst:154
msgid "See :pep:`667` for more information."
msgstr ""

#: ../../c-api/frame.rst:158
msgid "The type of frame :func:`locals` proxy objects."
msgstr ""

#: ../../c-api/frame.rst:162
msgid "Return non-zero if *obj* is a frame :func:`locals` proxy."
msgstr ""

#: ../../c-api/frame.rst:165
msgid "Internal Frames"
msgstr ""

#: ../../c-api/frame.rst:147
#: ../../c-api/frame.rst:167
msgid "Unless using :pep:`523`, you will not need this."
msgstr ""

#: ../../c-api/frame.rst:151
#: ../../c-api/frame.rst:171
msgid "The interpreter's internal frame representation."
msgstr ""

#: ../../c-api/frame.rst:157
#: ../../c-api/frame.rst:177
msgid "Return a :term:`strong reference` to the code object for the frame."
msgstr ""

#: ../../c-api/frame.rst:164
#: ../../c-api/frame.rst:184
msgid "Return the byte offset into the last executed instruction."
msgstr ""

#: ../../c-api/frame.rst:171
#: ../../c-api/frame.rst:191
msgid ""
"Return the currently executing line number, or -1 if there is no line number."
msgstr ""
Loading

0 comments on commit 1b40469

Please sign in to comment.