@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version :Python 3.6\n "
13
13
"Report-Msgid-Bugs-To :\n "
14
- "POT-Creation-Date :2018-01-05 15:01+0000 \n "
14
+ "POT-Creation-Date :2018-11-30 15:03+0900 \n "
15
15
"PO-Revision-Date :2018-06-29 17:49+0000\n "
16
16
"Last-Translator :tomo🐧, 2018\n "
17
17
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -65,7 +65,11 @@ msgstr ""
65
65
"を定義して使うことを想定しています。それぞれのフラグはpythonの異なるリリースで安定していることが保証されていますが、 "
66
66
":c:member:`~PyTypeObject.tp_flags` 自体は限定されたAPIの一部ではありません。"
67
67
68
- #: ../../c-api/type.rst:50
68
+ #: ../../c-api/type.rst:47
69
+ msgid "The return type is now ``unsigned long`` rather than ``long``."
70
+ msgstr ""
71
+
72
+ #: ../../c-api/type.rst:53
69
73
msgid ""
70
74
"Invalidate the internal lookup cache for the type and all of its subtypes. "
71
75
"This function must be called after any manual modification of the attributes"
@@ -74,25 +78,25 @@ msgstr ""
74
78
"内部の検索キャッシュを、その type とすべてのサブタイプに対して無効にします。この関数は type "
75
79
"の属性や基底クラス列を変更したあとに手動で呼び出さなければなりません。"
76
80
77
- #: ../../c-api/type.rst:57
81
+ #: ../../c-api/type.rst:60
78
82
msgid ""
79
83
"Return true if the type object *o* sets the feature *feature*. Type "
80
84
"features are denoted by single bit flags."
81
85
msgstr "型オブジェクト *o* に、型機能 *feature* が設定されている場合に真を返します。型機能は各々単一ビットのフラグで表されます。"
82
86
83
- #: ../../c-api/type.rst:63
87
+ #: ../../c-api/type.rst:66
84
88
msgid ""
85
89
"Return true if the type object includes support for the cycle detector; this"
86
90
" tests the type flag :const:`Py_TPFLAGS_HAVE_GC`."
87
91
msgstr ""
88
92
"型オブジェクトが *o* が循環参照検出をサポートしている場合に真を返します; この関数は型機能フラグ "
89
93
":const:`Py_TPFLAGS_HAVE_GC` の設定状態をチェックします。"
90
94
91
- #: ../../c-api/type.rst:69
95
+ #: ../../c-api/type.rst:72
92
96
msgid "Return true if *a* is a subtype of *b*."
93
97
msgstr "*a* が *b* のサブタイプの場合に真を返します。"
94
98
95
- #: ../../c-api/type.rst:71
99
+ #: ../../c-api/type.rst:74
96
100
msgid ""
97
101
"This function only checks for actual subtypes, which means that "
98
102
":meth:`~class.__subclasscheck__` is not called on *b*. Call "
@@ -103,7 +107,7 @@ msgstr ""
103
107
"に対し呼ばれません。 :func:`issubclass` と同じチェックをするには :c:func:`PyObject_IsSubclass` "
104
108
"を呼んでください。"
105
109
106
- #: ../../c-api/type.rst:79
110
+ #: ../../c-api/type.rst:82
107
111
msgid ""
108
112
"Generic handler for the :c:member:`~PyTypeObject.tp_alloc` slot of a type "
109
113
"object. Use Python's default memory allocation mechanism to allocate a new "
@@ -112,7 +116,7 @@ msgstr ""
112
116
"型オブジェクトの :c:member:`~PyTypeObject.tp_alloc` に対するジェネリックハンドラです。 Python "
113
117
"のデフォルトのメモリアロケートメカニズムを使って新しいインスタンスをアロケートし、すべての内容を *NULL* で初期化します。"
114
118
115
- #: ../../c-api/type.rst:85
119
+ #: ../../c-api/type.rst:88
116
120
msgid ""
117
121
"Generic handler for the :c:member:`~PyTypeObject.tp_new` slot of a type "
118
122
"object. Create a new instance using the type's "
@@ -121,7 +125,7 @@ msgstr ""
121
125
"型オブジェクトの :c:member:`~PyTypeObject.tp_new` に対するジェネリックハンドラです。型の "
122
126
":c:member:`~PyTypeObject.tp_alloc` スロットを使って新しいインスタンスを作成します。"
123
127
124
- #: ../../c-api/type.rst:90
128
+ #: ../../c-api/type.rst:93
125
129
msgid ""
126
130
"Finalize a type object. This should be called on all type objects to finish"
127
131
" their initialization. This function is responsible for adding inherited "
@@ -131,13 +135,13 @@ msgstr ""
131
135
"型オブジェクトのファイナライズを行います。この関数は全てのオブジェクトで初期化を完了するために呼び出されなくてはなりません。この関数は、基底クラス型から継承したスロットを型オブジェクトに追加する役割があります。成功した場合には"
132
136
" ``0`` を返し、エラーの場合には ``-1`` を返して例外情報を設定します。"
133
137
134
- #: ../../c-api/type.rst:97
138
+ #: ../../c-api/type.rst:100
135
139
msgid ""
136
140
"Creates and returns a heap type object from the *spec* passed to the "
137
141
"function."
138
142
msgstr "関数引数に与えられた *spec* からヒープタイプのオブジェクトを作って返します。"
139
143
140
- #: ../../c-api/type.rst:101
144
+ #: ../../c-api/type.rst:104
141
145
msgid ""
142
146
"Creates and returns a heap type object from the *spec*. In addition to that,"
143
147
" the created heap type contains all types contained by the *bases* tuple as "
@@ -147,7 +151,7 @@ msgstr ""
147
151
"*spec* からヒープタイプのオブジェクトを生成して返します。加えて、生成されたヒープタイプは *bases* "
148
152
"タプルが保持するすべての型を基底の型として保持します。他のヒープ型を基底型として参照できます。"
149
153
150
- #: ../../c-api/type.rst:109
154
+ #: ../../c-api/type.rst:112
151
155
msgid ""
152
156
"Return the function pointer stored in the given slot. If the result is "
153
157
"*NULL*, this indicates that either the slot is *NULL*, or that the function "