66# Translators:
77# tomo, 2021
88# Arihiro TAKASE, 2023
9+ # 石井 明久, 2024
910#
1011#, fuzzy
1112msgid ""
1213msgstr ""
1314"Project-Id-Version : Python 3.13\n "
1415"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 "
1617"PO-Revision-Date : 2021-06-28 00:50+0000\n "
17- "Last-Translator : Arihiro TAKASE, 2023 \n "
18+ "Last-Translator : 石井 明久, 2024 \n "
1819"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
1920"ja/)\n "
2021"MIME-Version : 1.0\n "
@@ -32,10 +33,12 @@ msgid ""
3233"The functions and macros in this section are used for managing reference "
3334"counts of Python objects."
3435msgstr ""
36+ "このセクションにある関数とマクロは、 Python オブジェクトの参照カウントの管理"
37+ "に使用されます。"
3538
3639#: ../../c-api/refcounting.rst:16
3740msgid "Get the reference count of the Python object *o*."
38- msgstr ""
41+ msgstr "Python オブジェクト *o* の参照カウントを取得します。 "
3942
4043#: ../../c-api/refcounting.rst:18
4144msgid ""
@@ -45,34 +48,43 @@ msgid ""
4548"number of references. Consequently, do not rely on the returned value to be "
4649"accurate, other than a value of 0 or 1."
4750msgstr ""
51+ "戻り値は、実際に保持されているオブジェクトの参照の数を実際に反映しているとは"
52+ "限らないことに注意してください。例えば、一部のオブジェクトは永続 (:term:"
53+ "`immortal`) であり、実際の参照の数を反映しない非常に高い参照数を持ちます。し"
54+ "たがって、 0 か 1 の値以外では、正確な戻り値に頼らないでください。"
4855
4956#: ../../c-api/refcounting.rst:24
5057msgid ""
5158"Use the :c:func:`Py_SET_REFCNT()` function to set an object reference count."
5259msgstr ""
60+ "オブジェクトの参照カウントを設定するためには、 :c:func:`Py_SET_REFCNT()` 関数"
61+ "を使用してください。"
5362
5463#: ../../c-api/refcounting.rst:26
5564msgid ":c:func:`Py_REFCNT()` is changed to the inline static function."
56- msgstr ""
65+ msgstr ":c:func:`Py_REFCNT()` は static なインライン関数に変更されました。 "
5766
5867#: ../../c-api/refcounting.rst:29
5968msgid "The parameter type is no longer :c:expr:`const PyObject*`."
60- msgstr ""
69+ msgstr "引数の型は :c:expr:`const PyObject*` ではなくなりました。 "
6170
6271#: ../../c-api/refcounting.rst:35
6372msgid "Set the object *o* reference counter to *refcnt*."
64- msgstr ""
73+ msgstr "オブジェクト *o* の参照カウントを *refcnt* に設定します。 "
6574
6675#: ../../c-api/refcounting.rst:37
6776msgid ""
6877"On :ref:`Python build with Free Threading <free-threading-build>`, if "
6978"*refcnt* is larger than ``UINT32_MAX``, the object is made :term:`immortal`."
7079msgstr ""
80+ ":ref:`フリースレッドな Python ビルド <free-threading-build>` では、 *refcnt* "
81+ "が ``UINT32_MAX`` より大きい場合、オブジェクトは永続 (:term:`immortal`) とな"
82+ "ります。"
7183
7284#: ../../c-api/refcounting.rst:40 ../../c-api/refcounting.rst:53
7385#: ../../c-api/refcounting.rst:119
7486msgid "This function has no effect on :term:`immortal` objects."
75- msgstr ""
87+ msgstr "この関数は永続 (:term:`immortal`) オブジェクトには何もしません。 "
7688
7789#: ../../c-api/refcounting.rst:44 ../../c-api/refcounting.rst:68
7890#: ../../c-api/refcounting.rst:147
0 commit comments