@@ -12,7 +12,7 @@ msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version : Python 3.13\n "
14
14
"Report-Msgid-Bugs-To : \n "
15
- "POT-Creation-Date : 2024-11-22 14:17 +0000\n "
15
+ "POT-Creation-Date : 2024-12-13 14:18 +0000\n "
16
16
"PO-Revision-Date : 2022-11-05 19:48+0000\n "
17
17
"Last-Translator : Arihiro TAKASE, 2023\n "
18
18
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -163,34 +163,61 @@ msgid ""
163
163
msgstr ""
164
164
165
165
#: ../../c-api/frame.rst:134
166
- msgid "As part of :pep:`667`, return a proxy object for optimized scopes."
166
+ msgid ""
167
+ "As part of :pep:`667`, return an instance of :c:var:"
168
+ "`PyFrameLocalsProxy_Type`."
167
169
msgstr ""
168
170
169
171
#: ../../c-api/frame.rst:140
170
172
msgid "Return the line number that *frame* is currently executing."
171
173
msgstr "*frame* が現在実行している行番号を返します。"
172
174
173
- #: ../../c-api/frame.rst:145
175
+ #: ../../c-api/frame.rst:144
176
+ msgid "Frame Locals Proxies"
177
+ msgstr ""
178
+
179
+ #: ../../c-api/frame.rst:148
180
+ msgid ""
181
+ "The :attr:`~frame.f_locals` attribute on a :ref:`frame object <frame-"
182
+ "objects>` is an instance of a \" frame-locals proxy\" . The proxy object "
183
+ "exposes a write-through view of the underlying locals dictionary for the "
184
+ "frame. This ensures that the variables exposed by ``f_locals`` are always up "
185
+ "to date with the live local variables in the frame itself."
186
+ msgstr ""
187
+
188
+ #: ../../c-api/frame.rst:154
189
+ msgid "See :pep:`667` for more information."
190
+ msgstr ""
191
+
192
+ #: ../../c-api/frame.rst:158
193
+ msgid "The type of frame :func:`locals` proxy objects."
194
+ msgstr ""
195
+
196
+ #: ../../c-api/frame.rst:162
197
+ msgid "Return non-zero if *obj* is a frame :func:`locals` proxy."
198
+ msgstr ""
199
+
200
+ #: ../../c-api/frame.rst:165
174
201
msgid "Internal Frames"
175
202
msgstr ""
176
203
177
- #: ../../c-api/frame.rst:147
204
+ #: ../../c-api/frame.rst:167
178
205
msgid "Unless using :pep:`523`, you will not need this."
179
206
msgstr ""
180
207
181
- #: ../../c-api/frame.rst:151
208
+ #: ../../c-api/frame.rst:171
182
209
msgid "The interpreter's internal frame representation."
183
210
msgstr ""
184
211
185
- #: ../../c-api/frame.rst:157
212
+ #: ../../c-api/frame.rst:177
186
213
msgid "Return a :term:`strong reference` to the code object for the frame."
187
214
msgstr ""
188
215
189
- #: ../../c-api/frame.rst:164
216
+ #: ../../c-api/frame.rst:184
190
217
msgid "Return the byte offset into the last executed instruction."
191
218
msgstr ""
192
219
193
- #: ../../c-api/frame.rst:171
220
+ #: ../../c-api/frame.rst:191
194
221
msgid ""
195
222
"Return the currently executing line number, or -1 if there is no line number."
196
223
msgstr ""
0 commit comments