@@ -12,7 +12,7 @@ msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version : Python 3.12\n "
14
14
"Report-Msgid-Bugs-To : \n "
15
- "POT-Creation-Date : 2023-07-28 14:13+0000\n "
15
+ "POT-Creation-Date : 2023-08-11 14:13+0000\n "
16
16
"PO-Revision-Date : 2021-06-28 00:47+0000\n "
17
17
"Last-Translator : 菊池 健志, 2023\n "
18
18
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -53,12 +53,13 @@ msgstr ""
53
53
msgid ""
54
54
"Allocate a new Python object using the C structure type *TYPE* and the "
55
55
"Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
56
- "Python object header are not initialized; the object's reference count will "
57
- "be one. The size of the memory allocation is determined from the :c:member:"
58
- "`~PyTypeObject.tp_basicsize` field of the type object."
56
+ "Python object header are not initialized. The caller will own the only "
57
+ "reference to the object (i.e. its reference count will be one). The size of "
58
+ "the memory allocation is determined from the :c:member:`~PyTypeObject."
59
+ "tp_basicsize` field of the type object."
59
60
msgstr ""
60
61
61
- #: ../../c-api/allocation.rst:42
62
+ #: ../../c-api/allocation.rst:43
62
63
msgid ""
63
64
"Allocate a new Python object using the C structure type *TYPE* and the "
64
65
"Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
@@ -71,7 +72,7 @@ msgid ""
71
72
"management efficiency."
72
73
msgstr ""
73
74
74
- #: ../../c-api/allocation.rst:56
75
+ #: ../../c-api/allocation.rst:57
75
76
msgid ""
76
77
"Releases memory allocated to an object using :c:macro:`PyObject_New` or :c:"
77
78
"macro:`PyObject_NewVar`. This is normally called from the :c:member:"
@@ -80,7 +81,7 @@ msgid ""
80
81
"no longer a valid Python object."
81
82
msgstr ""
82
83
83
- #: ../../c-api/allocation.rst:65
84
+ #: ../../c-api/allocation.rst:66
84
85
msgid ""
85
86
"Object which is visible in Python as ``None``. This should only be accessed "
86
87
"using the :c:macro:`Py_None` macro, which evaluates to a pointer to this "
@@ -90,10 +91,10 @@ msgstr ""
90
91
"ブジェクトへのポインタを評価する :c:macro:`Py_None` マクロを使わなければなり"
91
92
"ません。"
92
93
93
- #: ../../c-api/allocation.rst:72
94
+ #: ../../c-api/allocation.rst:73
94
95
msgid ":c:func:`PyModule_Create`"
95
96
msgstr ":c:func:`PyModule_Create`"
96
97
97
- #: ../../c-api/allocation.rst:73
98
+ #: ../../c-api/allocation.rst:74
98
99
msgid "To allocate and create extension modules."
99
100
msgstr "拡張モジュールのアロケートと生成。"
0 commit comments