6
6
# Translators:
7
7
# tomo, 2021
8
8
# Arihiro TAKASE, 2023
9
+ # 石井 明久, 2024
9
10
#
10
11
#, fuzzy
11
12
msgid ""
12
13
msgstr ""
13
14
"Project-Id-Version : Python 3.13\n "
14
15
"Report-Msgid-Bugs-To : \n "
15
- "POT-Creation-Date : 2024-05-31 14:14 +0000\n "
16
+ "POT-Creation-Date : 2024-05-17 14:15 +0000\n "
16
17
"PO-Revision-Date : 2021-06-28 00:50+0000\n "
17
- "Last-Translator : Arihiro TAKASE, 2023 \n "
18
+ "Last-Translator : 石井 明久, 2024 \n "
18
19
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
19
20
"ja/)\n "
20
21
"MIME-Version : 1.0\n "
@@ -32,10 +33,12 @@ msgid ""
32
33
"The functions and macros in this section are used for managing reference "
33
34
"counts of Python objects."
34
35
msgstr ""
36
+ "このセクションにある関数とマクロは、 Python オブジェクトの参照カウントの管理"
37
+ "に使用されます。"
35
38
36
39
#: ../../c-api/refcounting.rst:16
37
40
msgid "Get the reference count of the Python object *o*."
38
- msgstr ""
41
+ msgstr "Python オブジェクト *o* の参照カウントを取得します。 "
39
42
40
43
#: ../../c-api/refcounting.rst:18
41
44
msgid ""
@@ -45,34 +48,43 @@ msgid ""
45
48
"number of references. Consequently, do not rely on the returned value to be "
46
49
"accurate, other than a value of 0 or 1."
47
50
msgstr ""
51
+ "戻り値は、実際に保持されているオブジェクトの参照の数を実際に反映しているとは"
52
+ "限らないことに注意してください。例えば、一部のオブジェクトは永続 (:term:"
53
+ "`immortal`) であり、実際の参照の数を反映しない非常に高い参照数を持ちます。し"
54
+ "たがって、 0 か 1 の値以外では、正確な戻り値に頼らないでください。"
48
55
49
56
#: ../../c-api/refcounting.rst:24
50
57
msgid ""
51
58
"Use the :c:func:`Py_SET_REFCNT()` function to set an object reference count."
52
59
msgstr ""
60
+ "オブジェクトの参照カウントを設定するためには、 :c:func:`Py_SET_REFCNT()` 関数"
61
+ "を使用してください。"
53
62
54
63
#: ../../c-api/refcounting.rst:26
55
64
msgid ":c:func:`Py_REFCNT()` is changed to the inline static function."
56
- msgstr ""
65
+ msgstr ":c:func:`Py_REFCNT()` は static なインライン関数に変更されました。 "
57
66
58
67
#: ../../c-api/refcounting.rst:29
59
68
msgid "The parameter type is no longer :c:expr:`const PyObject*`."
60
- msgstr ""
69
+ msgstr "引数の型は :c:expr:`const PyObject*` ではなくなりました。 "
61
70
62
71
#: ../../c-api/refcounting.rst:35
63
72
msgid "Set the object *o* reference counter to *refcnt*."
64
- msgstr ""
73
+ msgstr "オブジェクト *o* の参照カウントを *refcnt* に設定します。 "
65
74
66
75
#: ../../c-api/refcounting.rst:37
67
76
msgid ""
68
77
"On :ref:`Python build with Free Threading <free-threading-build>`, if "
69
78
"*refcnt* is larger than ``UINT32_MAX``, the object is made :term:`immortal`."
70
79
msgstr ""
80
+ ":ref:`フリースレッドな Python ビルド <free-threading-build>` では、 *refcnt* "
81
+ "が ``UINT32_MAX`` より大きい場合、オブジェクトは永続 (:term:`immortal`) とな"
82
+ "ります。"
71
83
72
84
#: ../../c-api/refcounting.rst:40 ../../c-api/refcounting.rst:53
73
85
#: ../../c-api/refcounting.rst:119
74
86
msgid "This function has no effect on :term:`immortal` objects."
75
- msgstr ""
87
+ msgstr "この関数は永続 (:term:`immortal`) オブジェクトには何もしません。 "
76
88
77
89
#: ../../c-api/refcounting.rst:44 ../../c-api/refcounting.rst:68
78
90
#: ../../c-api/refcounting.rst:147
0 commit comments