@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.14\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2026-02-19 14:43 +0000\n "
14+ "POT-Creation-Date : 2026-03-01 14:19 +0000\n "
1515"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1616"Last-Translator : python-doc bot, 2025\n "
1717"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -86,80 +86,81 @@ msgstr ""
8686
8787#: ../../c-api/frame.rst:51
8888msgid ""
89- "Return a :term:`strong reference`, or ``NULL`` if *frame* has no outer frame."
89+ "Return a :term:`strong reference`, or ``NULL`` if *frame* has no outer "
90+ "frame. This raises no exceptions."
9091msgstr ""
9192
92- #: ../../c-api/frame.rst:59
93+ #: ../../c-api/frame.rst:60
9394msgid "Get the *frame*'s :attr:`~frame.f_builtins` attribute."
9495msgstr ""
9596
96- #: ../../c-api/frame.rst:61 ../../c-api/frame.rst:92
97+ #: ../../c-api/frame.rst:62 ../../c-api/frame.rst:93
9798msgid "Return a :term:`strong reference`. The result cannot be ``NULL``."
9899msgstr ""
99100
100- #: ../../c-api/frame.rst:68
101+ #: ../../c-api/frame.rst:69
101102msgid "Get the *frame* code."
102103msgstr ""
103104
104- #: ../../c-api/frame.rst:70 ../../c-api/frame.rst:136
105+ #: ../../c-api/frame.rst:71 ../../c-api/frame.rst:137
105106msgid "Return a :term:`strong reference`."
106107msgstr ""
107108
108- #: ../../c-api/frame.rst:72
109+ #: ../../c-api/frame.rst:73
109110msgid "The result (frame code) cannot be ``NULL``."
110111msgstr ""
111112
112- #: ../../c-api/frame.rst:79
113+ #: ../../c-api/frame.rst:80
113114msgid ""
114115"Get the generator, coroutine, or async generator that owns this frame, or "
115116"``NULL`` if this frame is not owned by a generator. Does not raise an "
116117"exception, even if the return value is ``NULL``."
117118msgstr ""
118119
119- #: ../../c-api/frame.rst:83
120+ #: ../../c-api/frame.rst:84
120121msgid "Return a :term:`strong reference`, or ``NULL``."
121122msgstr ""
122123
123- #: ../../c-api/frame.rst:90
124+ #: ../../c-api/frame.rst:91
124125msgid "Get the *frame*'s :attr:`~frame.f_globals` attribute."
125126msgstr ""
126127
127- #: ../../c-api/frame.rst:99
128+ #: ../../c-api/frame.rst:100
128129msgid "Get the *frame*'s :attr:`~frame.f_lasti` attribute."
129130msgstr ""
130131
131- #: ../../c-api/frame.rst:101
132+ #: ../../c-api/frame.rst:102
132133msgid "Returns -1 if ``frame.f_lasti`` is ``None``."
133134msgstr ""
134135
135- #: ../../c-api/frame.rst:108
136+ #: ../../c-api/frame.rst:109
136137msgid "Get the variable *name* of *frame*."
137138msgstr ""
138139
139- #: ../../c-api/frame.rst:110
140+ #: ../../c-api/frame.rst:111
140141msgid "Return a :term:`strong reference` to the variable value on success."
141142msgstr ""
142143
143- #: ../../c-api/frame.rst:111
144+ #: ../../c-api/frame.rst:112
144145msgid ""
145146"Raise :exc:`NameError` and return ``NULL`` if the variable does not exist."
146147msgstr ""
147148
148- #: ../../c-api/frame.rst:112
149+ #: ../../c-api/frame.rst:113
149150msgid "Raise an exception and return ``NULL`` on error."
150151msgstr ""
151152
152- #: ../../c-api/frame.rst:114
153+ #: ../../c-api/frame.rst:115
153154msgid "*name* type must be a :class:`str`."
154155msgstr ""
155156
156- #: ../../c-api/frame.rst:121
157+ #: ../../c-api/frame.rst:122
157158msgid ""
158159"Similar to :c:func:`PyFrame_GetVar`, but the variable name is a C string "
159160"encoded in UTF-8."
160161msgstr ""
161162
162- #: ../../c-api/frame.rst:129
163+ #: ../../c-api/frame.rst:130
163164msgid ""
164165"Get the *frame*'s :attr:`~frame.f_locals` attribute. If the frame refers to "
165166"an :term:`optimized scope`, this returns a write-through proxy object that "
@@ -168,21 +169,21 @@ msgid ""
168169"directly (as described for :func:`locals`)."
169170msgstr ""
170171
171- #: ../../c-api/frame.rst:140
172+ #: ../../c-api/frame.rst:141
172173msgid ""
173174"As part of :pep:`667`, return an instance of :c:var:"
174175"`PyFrameLocalsProxy_Type`."
175176msgstr ""
176177
177- #: ../../c-api/frame.rst:146
178+ #: ../../c-api/frame.rst:147
178179msgid "Return the line number that *frame* is currently executing."
179180msgstr "*frame* が現在実行している行番号を返します。"
180181
181- #: ../../c-api/frame.rst:150
182+ #: ../../c-api/frame.rst:151
182183msgid "Frame Locals Proxies"
183184msgstr ""
184185
185- #: ../../c-api/frame.rst:154
186+ #: ../../c-api/frame.rst:155
186187msgid ""
187188"The :attr:`~frame.f_locals` attribute on a :ref:`frame object <frame-"
188189"objects>` is an instance of a \" frame-locals proxy\" . The proxy object "
@@ -191,34 +192,34 @@ msgid ""
191192"to date with the live local variables in the frame itself."
192193msgstr ""
193194
194- #: ../../c-api/frame.rst:160
195+ #: ../../c-api/frame.rst:161
195196msgid "See :pep:`667` for more information."
196197msgstr ""
197198
198- #: ../../c-api/frame.rst:164
199+ #: ../../c-api/frame.rst:165
199200msgid "The type of frame :func:`locals` proxy objects."
200201msgstr ""
201202
202- #: ../../c-api/frame.rst:168
203+ #: ../../c-api/frame.rst:169
203204msgid "Return non-zero if *obj* is a frame :func:`locals` proxy."
204205msgstr ""
205206
206- #: ../../c-api/frame.rst:172
207+ #: ../../c-api/frame.rst:173
207208msgid "Legacy Local Variable APIs"
208209msgstr ""
209210
210- #: ../../c-api/frame.rst:174
211+ #: ../../c-api/frame.rst:175
211212msgid ""
212213"These APIs are :term:`soft deprecated`. As of Python 3.13, they do nothing. "
213214"They exist solely for backwards compatibility."
214215msgstr ""
215216
216- #: ../../c-api/frame.rst:180 ../../c-api/frame.rst:194
217- #: ../../c-api/frame.rst:207
217+ #: ../../c-api/frame.rst:181 ../../c-api/frame.rst:195
218+ #: ../../c-api/frame.rst:208
218219msgid "This function is :term:`soft deprecated` and does nothing."
219220msgstr ""
220221
221- #: ../../c-api/frame.rst:182
222+ #: ../../c-api/frame.rst:183
222223msgid ""
223224"Prior to Python 3.13, this function would copy the :attr:`~frame.f_locals` "
224225"attribute of *f* to the internal \" fast\" array of local variables, allowing "
@@ -227,51 +228,51 @@ msgid ""
227228"dictionary."
228229msgstr ""
229230
230- #: ../../c-api/frame.rst:188 ../../c-api/frame.rst:201
231- #: ../../c-api/frame.rst:213
231+ #: ../../c-api/frame.rst:189 ../../c-api/frame.rst:202
232+ #: ../../c-api/frame.rst:214
232233msgid "This function now does nothing."
233234msgstr ""
234235
235- #: ../../c-api/frame.rst:196
236+ #: ../../c-api/frame.rst:197
236237msgid ""
237238"Prior to Python 3.13, this function would copy the internal \" fast\" array "
238239"of local variables (which is used by the interpreter) to the :attr:`~frame."
239240"f_locals` attribute of *f*, allowing changes in local variables to be "
240241"visible to frame objects."
241242msgstr ""
242243
243- #: ../../c-api/frame.rst:209
244+ #: ../../c-api/frame.rst:210
244245msgid ""
245246"Prior to Python 3.13, this function was similar to :c:func:"
246247"`PyFrame_FastToLocals`, but would return ``0`` on success, and ``-1`` with "
247248"an exception set on failure."
248249msgstr ""
249250
250- #: ../../c-api/frame.rst:218
251+ #: ../../c-api/frame.rst:219
251252msgid ":pep:`667`"
252253msgstr ""
253254
254- #: ../../c-api/frame.rst:222
255+ #: ../../c-api/frame.rst:223
255256msgid "Internal Frames"
256257msgstr ""
257258
258- #: ../../c-api/frame.rst:224
259+ #: ../../c-api/frame.rst:225
259260msgid "Unless using :pep:`523`, you will not need this."
260261msgstr ""
261262
262- #: ../../c-api/frame.rst:228
263+ #: ../../c-api/frame.rst:229
263264msgid "The interpreter's internal frame representation."
264265msgstr ""
265266
266- #: ../../c-api/frame.rst:234
267+ #: ../../c-api/frame.rst:235
267268msgid "Return a :term:`strong reference` to the code object for the frame."
268269msgstr ""
269270
270- #: ../../c-api/frame.rst:241
271+ #: ../../c-api/frame.rst:242
271272msgid "Return the byte offset into the last executed instruction."
272273msgstr ""
273274
274- #: ../../c-api/frame.rst:248
275+ #: ../../c-api/frame.rst:249
275276msgid ""
276277"Return the currently executing line number, or -1 if there is no line number."
277278msgstr ""
0 commit comments