@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.14\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2025-10-27 14:15 +0000\n "
14+ "POT-Creation-Date : 2025-11-13 18:32 +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/ "
@@ -260,191 +260,205 @@ msgid ""
260260"it before returning."
261261msgstr ""
262262
263- #: ../../c-api/code.rst:217
263+ #: ../../c-api/code.rst:216
264+ msgid "This is a :term:`soft deprecated` function that does nothing."
265+ msgstr ""
266+
267+ #: ../../c-api/code.rst:218
268+ msgid ""
269+ "Prior to Python 3.10, this function would perform basic optimizations to a "
270+ "code object."
271+ msgstr ""
272+
273+ #: ../../c-api/code.rst:221
274+ msgid "This function now does nothing."
275+ msgstr ""
276+
277+ #: ../../c-api/code.rst:228
264278msgid "Code Object Flags"
265279msgstr ""
266280
267- #: ../../c-api/code.rst:219
281+ #: ../../c-api/code.rst:230
268282msgid ""
269283"Code objects contain a bit-field of flags, which can be retrieved as the :"
270284"attr:`~codeobject.co_flags` Python attribute (for example using :c:func:"
271285"`PyObject_GetAttrString`), and set using a *flags* argument to :c:func:"
272286"`PyUnstable_Code_New` and similar functions."
273287msgstr ""
274288
275- #: ../../c-api/code.rst:224
289+ #: ../../c-api/code.rst:235
276290msgid ""
277291"Flags whose names start with ``CO_FUTURE_`` correspond to features normally "
278292"selectable by :ref:`future statements <future>`. These flags can be used in :"
279293"c:member:`PyCompilerFlags.cf_flags`. Note that many ``CO_FUTURE_`` flags are "
280294"mandatory in current versions of Python, and setting them has no effect."
281295msgstr ""
282296
283- #: ../../c-api/code.rst:230
297+ #: ../../c-api/code.rst:241
284298msgid ""
285299"The following flags are available. For their meaning, see the linked "
286300"documentation of their Python equivalents."
287301msgstr ""
288302
289- #: ../../c-api/code.rst:238
303+ #: ../../c-api/code.rst:249
290304msgid "Flag"
291305msgstr "Flag"
292306
293- #: ../../c-api/code.rst:239
307+ #: ../../c-api/code.rst:250
294308msgid "Meaning"
295309msgstr "意味"
296310
297- #: ../../c-api/code.rst:241
311+ #: ../../c-api/code.rst:252
298312msgid ":py:data:`inspect.CO_OPTIMIZED`"
299313msgstr ""
300314
301- #: ../../c-api/code.rst:243
315+ #: ../../c-api/code.rst:254
302316msgid ":py:data:`inspect.CO_NEWLOCALS`"
303317msgstr ""
304318
305- #: ../../c-api/code.rst:245
319+ #: ../../c-api/code.rst:256
306320msgid ":py:data:`inspect.CO_VARARGS`"
307321msgstr ""
308322
309- #: ../../c-api/code.rst:247
323+ #: ../../c-api/code.rst:258
310324msgid ":py:data:`inspect.CO_VARKEYWORDS`"
311325msgstr ""
312326
313- #: ../../c-api/code.rst:249
327+ #: ../../c-api/code.rst:260
314328msgid ":py:data:`inspect.CO_NESTED`"
315329msgstr ""
316330
317- #: ../../c-api/code.rst:251
331+ #: ../../c-api/code.rst:262
318332msgid ":py:data:`inspect.CO_GENERATOR`"
319333msgstr ""
320334
321- #: ../../c-api/code.rst:253
335+ #: ../../c-api/code.rst:264
322336msgid ":py:data:`inspect.CO_COROUTINE`"
323337msgstr ""
324338
325- #: ../../c-api/code.rst:255
339+ #: ../../c-api/code.rst:266
326340msgid ":py:data:`inspect.CO_ITERABLE_COROUTINE`"
327341msgstr ""
328342
329- #: ../../c-api/code.rst:257
343+ #: ../../c-api/code.rst:268
330344msgid ":py:data:`inspect.CO_ASYNC_GENERATOR`"
331345msgstr ""
332346
333- #: ../../c-api/code.rst:259
347+ #: ../../c-api/code.rst:270
334348msgid ":py:data:`inspect.CO_HAS_DOCSTRING`"
335349msgstr ""
336350
337- #: ../../c-api/code.rst:261
351+ #: ../../c-api/code.rst:272
338352msgid ":py:data:`inspect.CO_METHOD`"
339353msgstr ""
340354
341- #: ../../c-api/code.rst:264
355+ #: ../../c-api/code.rst:275
342356msgid "no effect (:py:data:`__future__.division`)"
343357msgstr ""
344358
345- #: ../../c-api/code.rst:266
359+ #: ../../c-api/code.rst:277
346360msgid "no effect (:py:data:`__future__.absolute_import`)"
347361msgstr ""
348362
349- #: ../../c-api/code.rst:268
363+ #: ../../c-api/code.rst:279
350364msgid "no effect (:py:data:`__future__.with_statement`)"
351365msgstr ""
352366
353- #: ../../c-api/code.rst:270
367+ #: ../../c-api/code.rst:281
354368msgid "no effect (:py:data:`__future__.print_function`)"
355369msgstr ""
356370
357- #: ../../c-api/code.rst:272
371+ #: ../../c-api/code.rst:283
358372msgid "no effect (:py:data:`__future__.unicode_literals`)"
359373msgstr ""
360374
361- #: ../../c-api/code.rst:274
375+ #: ../../c-api/code.rst:285
362376msgid "no effect (:py:data:`__future__.generator_stop`)"
363377msgstr ""
364378
365- #: ../../c-api/code.rst:276
379+ #: ../../c-api/code.rst:287
366380msgid ":py:data:`__future__.annotations`"
367381msgstr ""
368382
369- #: ../../c-api/code.rst:280
383+ #: ../../c-api/code.rst:291
370384msgid "Extra information"
371385msgstr ""
372386
373- #: ../../c-api/code.rst:282
387+ #: ../../c-api/code.rst:293
374388msgid ""
375389"To support low-level extensions to frame evaluation, such as external just-"
376390"in-time compilers, it is possible to attach arbitrary extra data to code "
377391"objects."
378392msgstr ""
379393
380- #: ../../c-api/code.rst:286
394+ #: ../../c-api/code.rst:297
381395msgid ""
382396"These functions are part of the unstable C API tier: this functionality is a "
383397"CPython implementation detail, and the API may change without deprecation "
384398"warnings."
385399msgstr ""
386400
387- #: ../../c-api/code.rst:292
401+ #: ../../c-api/code.rst:303
388402msgid "Return a new opaque index value used to adding data to code objects."
389403msgstr ""
390404
391- #: ../../c-api/code.rst:294
405+ #: ../../c-api/code.rst:305
392406msgid ""
393407"You generally call this function once (per interpreter) and use the result "
394408"with ``PyCode_GetExtra`` and ``PyCode_SetExtra`` to manipulate data on "
395409"individual code objects."
396410msgstr ""
397411
398- #: ../../c-api/code.rst:298
412+ #: ../../c-api/code.rst:309
399413msgid ""
400414"If *free* is not ``NULL``: when a code object is deallocated, *free* will be "
401415"called on non-``NULL`` data stored under the new index. Use :c:func:"
402416"`Py_DecRef` when storing :c:type:`PyObject`."
403417msgstr ""
404418
405- #: ../../c-api/code.rst:304
419+ #: ../../c-api/code.rst:315
406420msgid "as ``_PyEval_RequestCodeExtraIndex``"
407421msgstr ""
408422
409- #: ../../c-api/code.rst:308
423+ #: ../../c-api/code.rst:319
410424msgid ""
411425"Renamed to ``PyUnstable_Eval_RequestCodeExtraIndex``. The old private name "
412426"is deprecated, but will be available until the API changes."
413427msgstr ""
414428
415- #: ../../c-api/code.rst:314
429+ #: ../../c-api/code.rst:325
416430msgid ""
417431"Set *extra* to the extra data stored under the given index. Return 0 on "
418432"success. Set an exception and return -1 on failure."
419433msgstr ""
420434
421- #: ../../c-api/code.rst:317
435+ #: ../../c-api/code.rst:328
422436msgid ""
423437"If no data was set under the index, set *extra* to ``NULL`` and return 0 "
424438"without setting an exception."
425439msgstr ""
426440
427- #: ../../c-api/code.rst:322
441+ #: ../../c-api/code.rst:333
428442msgid "as ``_PyCode_GetExtra``"
429443msgstr ""
430444
431- #: ../../c-api/code.rst:326
445+ #: ../../c-api/code.rst:337
432446msgid ""
433447"Renamed to ``PyUnstable_Code_GetExtra``. The old private name is deprecated, "
434448"but will be available until the API changes."
435449msgstr ""
436450
437- #: ../../c-api/code.rst:332
451+ #: ../../c-api/code.rst:343
438452msgid ""
439453"Set the extra data stored under the given index to *extra*. Return 0 on "
440454"success. Set an exception and return -1 on failure."
441455msgstr ""
442456
443- #: ../../c-api/code.rst:337
457+ #: ../../c-api/code.rst:348
444458msgid "as ``_PyCode_SetExtra``"
445459msgstr ""
446460
447- #: ../../c-api/code.rst:341
461+ #: ../../c-api/code.rst:352
448462msgid ""
449463"Renamed to ``PyUnstable_Code_SetExtra``. The old private name is deprecated, "
450464"but will be available until the API changes."
@@ -470,14 +484,14 @@ msgstr "PyCode_New (C 関数)"
470484msgid "PyCode_NewWithPosOnlyArgs (C function)"
471485msgstr "PyCode_NewWithPosOnlyArgs (C 関数)"
472486
473- #: ../../c-api/code.rst:302
487+ #: ../../c-api/code.rst:313
474488msgid "_PyEval_RequestCodeExtraIndex (C function)"
475489msgstr "_PyEval_RequestCodeExtraIndex (C 関数)"
476490
477- #: ../../c-api/code.rst:320
491+ #: ../../c-api/code.rst:331
478492msgid "_PyCode_GetExtra (C function)"
479493msgstr "_PyCode_GetExtra (C 関数)"
480494
481- #: ../../c-api/code.rst:335
495+ #: ../../c-api/code.rst:346
482496msgid "_PyCode_SetExtra (C function)"
483497msgstr "_PyCode_SetExtra (C 関数)"
0 commit comments