66# Translators:
77# 秘湯 <xwhhsprings@gmail.com>, 2024
88# 石井明久, 2024
9- # tomo, 2024
109# Taichi Haradaguchi, 2024
10+ # tomo, 2025
1111#
1212#, fuzzy
1313msgid ""
1414msgstr ""
1515"Project-Id-Version : Python 3.14\n "
1616"Report-Msgid-Bugs-To : \n "
17- "POT-Creation-Date : 2025-07-04 14:20 +0000\n "
17+ "POT-Creation-Date : 2025-07-11 14:21 +0000\n "
1818"PO-Revision-Date : 2021-06-28 00:48+0000\n "
19- "Last-Translator : Taichi Haradaguchi, 2024 \n "
19+ "Last-Translator : tomo, 2025 \n "
2020"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
2121"ja/)\n "
2222"MIME-Version : 1.0\n "
@@ -263,85 +263,191 @@ msgid ""
263263"it before returning."
264264msgstr ""
265265
266- #: ../../c-api/code.rst:215
266+ #: ../../c-api/code.rst:217
267+ msgid "Code Object Flags"
268+ msgstr ""
269+
270+ #: ../../c-api/code.rst:219
271+ msgid ""
272+ "Code objects contain a bit-field of flags, which can be retrieved as the :"
273+ "attr:`~codeobject.co_flags` Python attribute (for example using :c:func:"
274+ "`PyObject_GetAttrString`), and set using a *flags* argument to :c:func:"
275+ "`PyUnstable_Code_New` and similar functions."
276+ msgstr ""
277+
278+ #: ../../c-api/code.rst:224
279+ msgid ""
280+ "Flags whose names start with ``CO_FUTURE_`` correspond to features normally "
281+ "selectable by :ref:`future statements <future>`. These flags can be used in :"
282+ "c:member:`PyCompilerFlags.cf_flags`. Note that many ``CO_FUTURE_`` flags are "
283+ "mandatory in current versions of Python, and setting them has no effect."
284+ msgstr ""
285+
286+ #: ../../c-api/code.rst:230
287+ msgid ""
288+ "The following flags are available. For their meaning, see the linked "
289+ "documentation of their Python equivalents."
290+ msgstr ""
291+
292+ #: ../../c-api/code.rst:238
293+ msgid "Flag"
294+ msgstr "Flag"
295+
296+ #: ../../c-api/code.rst:239
297+ msgid "Meaning"
298+ msgstr "意味"
299+
300+ #: ../../c-api/code.rst:241
301+ msgid ":py:data:`inspect.CO_OPTIMIZED`"
302+ msgstr ""
303+
304+ #: ../../c-api/code.rst:243
305+ msgid ":py:data:`inspect.CO_NEWLOCALS`"
306+ msgstr ""
307+
308+ #: ../../c-api/code.rst:245
309+ msgid ":py:data:`inspect.CO_VARARGS`"
310+ msgstr ""
311+
312+ #: ../../c-api/code.rst:247
313+ msgid ":py:data:`inspect.CO_VARKEYWORDS`"
314+ msgstr ""
315+
316+ #: ../../c-api/code.rst:249
317+ msgid ":py:data:`inspect.CO_NESTED`"
318+ msgstr ""
319+
320+ #: ../../c-api/code.rst:251
321+ msgid ":py:data:`inspect.CO_GENERATOR`"
322+ msgstr ""
323+
324+ #: ../../c-api/code.rst:253
325+ msgid ":py:data:`inspect.CO_COROUTINE`"
326+ msgstr ""
327+
328+ #: ../../c-api/code.rst:255
329+ msgid ":py:data:`inspect.CO_ITERABLE_COROUTINE`"
330+ msgstr ""
331+
332+ #: ../../c-api/code.rst:257
333+ msgid ":py:data:`inspect.CO_ASYNC_GENERATOR`"
334+ msgstr ""
335+
336+ #: ../../c-api/code.rst:259
337+ msgid ":py:data:`inspect.CO_HAS_DOCSTRING`"
338+ msgstr ""
339+
340+ #: ../../c-api/code.rst:261
341+ msgid ":py:data:`inspect.CO_METHOD`"
342+ msgstr ""
343+
344+ #: ../../c-api/code.rst:264
345+ msgid "no effect (:py:data:`__future__.division`)"
346+ msgstr ""
347+
348+ #: ../../c-api/code.rst:266
349+ msgid "no effect (:py:data:`__future__.absolute_import`)"
350+ msgstr ""
351+
352+ #: ../../c-api/code.rst:268
353+ msgid "no effect (:py:data:`__future__.with_statement`)"
354+ msgstr ""
355+
356+ #: ../../c-api/code.rst:270
357+ msgid "no effect (:py:data:`__future__.print_function`)"
358+ msgstr ""
359+
360+ #: ../../c-api/code.rst:272
361+ msgid "no effect (:py:data:`__future__.unicode_literals`)"
362+ msgstr ""
363+
364+ #: ../../c-api/code.rst:274
365+ msgid "no effect (:py:data:`__future__.generator_stop`)"
366+ msgstr ""
367+
368+ #: ../../c-api/code.rst:276
369+ msgid ":py:data:`__future__.annotations`"
370+ msgstr ""
371+
372+ #: ../../c-api/code.rst:280
267373msgid "Extra information"
268374msgstr ""
269375
270- #: ../../c-api/code.rst:217
376+ #: ../../c-api/code.rst:282
271377msgid ""
272378"To support low-level extensions to frame evaluation, such as external just-"
273379"in-time compilers, it is possible to attach arbitrary extra data to code "
274380"objects."
275381msgstr ""
276382
277- #: ../../c-api/code.rst:221
383+ #: ../../c-api/code.rst:286
278384msgid ""
279385"These functions are part of the unstable C API tier: this functionality is a "
280386"CPython implementation detail, and the API may change without deprecation "
281387"warnings."
282388msgstr ""
283389
284- #: ../../c-api/code.rst:227
390+ #: ../../c-api/code.rst:292
285391msgid "Return a new an opaque index value used to adding data to code objects."
286392msgstr ""
287393
288- #: ../../c-api/code.rst:229
394+ #: ../../c-api/code.rst:294
289395msgid ""
290396"You generally call this function once (per interpreter) and use the result "
291397"with ``PyCode_GetExtra`` and ``PyCode_SetExtra`` to manipulate data on "
292398"individual code objects."
293399msgstr ""
294400
295- #: ../../c-api/code.rst:233
401+ #: ../../c-api/code.rst:298
296402msgid ""
297403"If *free* is not ``NULL``: when a code object is deallocated, *free* will be "
298404"called on non-``NULL`` data stored under the new index. Use :c:func:"
299405"`Py_DecRef` when storing :c:type:`PyObject`."
300406msgstr ""
301407
302- #: ../../c-api/code.rst:239
408+ #: ../../c-api/code.rst:304
303409msgid "as ``_PyEval_RequestCodeExtraIndex``"
304410msgstr ""
305411
306- #: ../../c-api/code.rst:243
412+ #: ../../c-api/code.rst:308
307413msgid ""
308414"Renamed to ``PyUnstable_Eval_RequestCodeExtraIndex``. The old private name "
309415"is deprecated, but will be available until the API changes."
310416msgstr ""
311417
312- #: ../../c-api/code.rst:249
418+ #: ../../c-api/code.rst:314
313419msgid ""
314420"Set *extra* to the extra data stored under the given index. Return 0 on "
315421"success. Set an exception and return -1 on failure."
316422msgstr ""
317423
318- #: ../../c-api/code.rst:252
424+ #: ../../c-api/code.rst:317
319425msgid ""
320426"If no data was set under the index, set *extra* to ``NULL`` and return 0 "
321427"without setting an exception."
322428msgstr ""
323429
324- #: ../../c-api/code.rst:257
430+ #: ../../c-api/code.rst:322
325431msgid "as ``_PyCode_GetExtra``"
326432msgstr ""
327433
328- #: ../../c-api/code.rst:261
434+ #: ../../c-api/code.rst:326
329435msgid ""
330436"Renamed to ``PyUnstable_Code_GetExtra``. The old private name is deprecated, "
331437"but will be available until the API changes."
332438msgstr ""
333439
334- #: ../../c-api/code.rst:267
440+ #: ../../c-api/code.rst:332
335441msgid ""
336442"Set the extra data stored under the given index to *extra*. Return 0 on "
337443"success. Set an exception and return -1 on failure."
338444msgstr ""
339445
340- #: ../../c-api/code.rst:272
446+ #: ../../c-api/code.rst:337
341447msgid "as ``_PyCode_SetExtra``"
342448msgstr ""
343449
344- #: ../../c-api/code.rst:276
450+ #: ../../c-api/code.rst:341
345451msgid ""
346452"Renamed to ``PyUnstable_Code_SetExtra``. The old private name is deprecated, "
347453"but will be available until the API changes."
@@ -367,14 +473,14 @@ msgstr "PyCode_New (C 関数)"
367473msgid "PyCode_NewWithPosOnlyArgs (C function)"
368474msgstr "PyCode_NewWithPosOnlyArgs (C 関数)"
369475
370- #: ../../c-api/code.rst:237
476+ #: ../../c-api/code.rst:302
371477msgid "_PyEval_RequestCodeExtraIndex (C function)"
372478msgstr "_PyEval_RequestCodeExtraIndex (C 関数)"
373479
374- #: ../../c-api/code.rst:255
480+ #: ../../c-api/code.rst:320
375481msgid "_PyCode_GetExtra (C function)"
376482msgstr "_PyCode_GetExtra (C 関数)"
377483
378- #: ../../c-api/code.rst:270
484+ #: ../../c-api/code.rst:335
379485msgid "_PyCode_SetExtra (C function)"
380486msgstr "_PyCode_SetExtra (C 関数)"
0 commit comments