|
| 1 | +# SOME DESCRIPTIVE TITLE. |
| 2 | +# Copyright (C) 2001-2022, Python Software Foundation |
| 3 | +# This file is distributed under the same license as the Python package. |
| 4 | +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. |
| 5 | +# |
| 6 | +# Translators: |
| 7 | +# tomo, 2022 |
| 8 | +# |
| 9 | +#, fuzzy |
| 10 | +msgid "" |
| 11 | +msgstr "" |
| 12 | +"Project-Id-Version: Python 3.11\n" |
| 13 | +"Report-Msgid-Bugs-To: \n" |
| 14 | +"POT-Creation-Date: 2022-12-28 04:14+0000\n" |
| 15 | +"PO-Revision-Date: 2022-11-05 19:48+0000\n" |
| 16 | +"Last-Translator: tomo, 2022\n" |
| 17 | +"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/" |
| 18 | +"ja/)\n" |
| 19 | +"MIME-Version: 1.0\n" |
| 20 | +"Content-Type: text/plain; charset=UTF-8\n" |
| 21 | +"Content-Transfer-Encoding: 8bit\n" |
| 22 | +"Language: ja\n" |
| 23 | +"Plural-Forms: nplurals=1; plural=0;\n" |
| 24 | + |
| 25 | +#: ../../c-api/frame.rst:4 |
| 26 | +msgid "Frame Objects" |
| 27 | +msgstr "" |
| 28 | + |
| 29 | +#: ../../c-api/frame.rst:8 |
| 30 | +msgid "The C structure of the objects used to describe frame objects." |
| 31 | +msgstr "" |
| 32 | + |
| 33 | +#: ../../c-api/frame.rst:10 |
| 34 | +msgid "There are no public members in this structure." |
| 35 | +msgstr "" |
| 36 | + |
| 37 | +#: ../../c-api/frame.rst:12 |
| 38 | +msgid "" |
| 39 | +"The members of this structure were removed from the public C API. Refer to " |
| 40 | +"the :ref:`What's New entry <pyframeobject-3.11-hiding>` for details." |
| 41 | +msgstr "" |
| 42 | + |
| 43 | +#: ../../c-api/frame.rst:17 |
| 44 | +msgid "" |
| 45 | +"The :c:func:`PyEval_GetFrame` and :c:func:`PyThreadState_GetFrame` functions " |
| 46 | +"can be used to get a frame object." |
| 47 | +msgstr "" |
| 48 | + |
| 49 | +#: ../../c-api/frame.rst:20 |
| 50 | +msgid "See also :ref:`Reflection <reflection>`." |
| 51 | +msgstr "" |
| 52 | + |
| 53 | +#: ../../c-api/frame.rst:24 |
| 54 | +msgid "" |
| 55 | +"The type of frame objects. It is the same object as :py:class:`types." |
| 56 | +"FrameType` in the Python layer." |
| 57 | +msgstr "" |
| 58 | + |
| 59 | +#: ../../c-api/frame.rst:29 |
| 60 | +msgid "" |
| 61 | +"Previously, this type was only available after including ``<frameobject.h>``." |
| 62 | +msgstr "" |
| 63 | + |
| 64 | +#: ../../c-api/frame.rst:34 |
| 65 | +msgid "Return non-zero if *obj* is a frame object." |
| 66 | +msgstr "" |
| 67 | + |
| 68 | +#: ../../c-api/frame.rst:38 |
| 69 | +msgid "" |
| 70 | +"Previously, this function was only available after including ``<frameobject." |
| 71 | +"h>``." |
| 72 | +msgstr "" |
| 73 | + |
| 74 | +#: ../../c-api/frame.rst:43 |
| 75 | +msgid "Get the *frame* next outer frame." |
| 76 | +msgstr "" |
| 77 | + |
| 78 | +#: ../../c-api/frame.rst:45 |
| 79 | +msgid "" |
| 80 | +"Return a :term:`strong reference`, or ``NULL`` if *frame* has no outer frame." |
| 81 | +msgstr "" |
| 82 | + |
| 83 | +#: ../../c-api/frame.rst:53 |
| 84 | +msgid "Get the *frame*'s ``f_builtins`` attribute." |
| 85 | +msgstr "" |
| 86 | + |
| 87 | +#: ../../c-api/frame.rst:55 ../../c-api/frame.rst:86 |
| 88 | +msgid "Return a :term:`strong reference`. The result cannot be ``NULL``." |
| 89 | +msgstr "" |
| 90 | + |
| 91 | +#: ../../c-api/frame.rst:62 |
| 92 | +msgid "Get the *frame* code." |
| 93 | +msgstr "" |
| 94 | + |
| 95 | +#: ../../c-api/frame.rst:64 ../../c-api/frame.rst:104 |
| 96 | +msgid "Return a :term:`strong reference`." |
| 97 | +msgstr "" |
| 98 | + |
| 99 | +#: ../../c-api/frame.rst:66 |
| 100 | +msgid "The result (frame code) cannot be ``NULL``." |
| 101 | +msgstr "" |
| 102 | + |
| 103 | +#: ../../c-api/frame.rst:73 |
| 104 | +msgid "" |
| 105 | +"Get the generator, coroutine, or async generator that owns this frame, or " |
| 106 | +"``NULL`` if this frame is not owned by a generator. Does not raise an " |
| 107 | +"exception, even if the return value is ``NULL``." |
| 108 | +msgstr "" |
| 109 | + |
| 110 | +#: ../../c-api/frame.rst:77 |
| 111 | +msgid "Return a :term:`strong reference`, or ``NULL``." |
| 112 | +msgstr "" |
| 113 | + |
| 114 | +#: ../../c-api/frame.rst:84 |
| 115 | +msgid "Get the *frame*'s ``f_globals`` attribute." |
| 116 | +msgstr "" |
| 117 | + |
| 118 | +#: ../../c-api/frame.rst:93 |
| 119 | +msgid "Get the *frame*'s ``f_lasti`` attribute." |
| 120 | +msgstr "" |
| 121 | + |
| 122 | +#: ../../c-api/frame.rst:95 |
| 123 | +msgid "Returns -1 if ``frame.f_lasti`` is ``None``." |
| 124 | +msgstr "" |
| 125 | + |
| 126 | +#: ../../c-api/frame.rst:102 |
| 127 | +msgid "Get the *frame*'s ``f_locals`` attribute (:class:`dict`)." |
| 128 | +msgstr "" |
| 129 | + |
| 130 | +#: ../../c-api/frame.rst:111 |
| 131 | +msgid "Return the line number that *frame* is currently executing." |
| 132 | +msgstr "*frame* が現在実行している行番号を返します。" |
0 commit comments