@@ -14,7 +14,7 @@ msgid ""
14
14
msgstr ""
15
15
"Project-Id-Version : Python 3.8\n "
16
16
"Report-Msgid-Bugs-To : \n "
17
- "POT-Creation-Date : 2019-09-15 11:27 +0000\n "
17
+ "POT-Creation-Date : 2019-09-27 11:33 +0000\n "
18
18
"PO-Revision-Date : 2017-02-16 17:39+0000\n "
19
19
"Last-Translator : tomo, 2019\n "
20
20
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -168,148 +168,150 @@ msgid ""
168
168
msgstr ""
169
169
170
170
#: ../../c-api/type.rst:121
171
- msgid "Creates and returns a heap type object from the *spec*."
171
+ msgid ""
172
+ "Creates and returns a heap type object from the *spec* "
173
+ "(:const:`Py_TPFLAGS_HEAPTYPE`)."
172
174
msgstr ""
173
175
174
- #: ../../c-api/type.rst:123
176
+ #: ../../c-api/type.rst:124
175
177
msgid ""
176
178
"If *bases* is a tuple, the created heap type contains all types contained in"
177
179
" it as base types."
178
180
msgstr ""
179
181
180
- #: ../../c-api/type.rst:126
182
+ #: ../../c-api/type.rst:127
181
183
msgid ""
182
184
"If *bases* is *NULL*, the *Py_tp_base* slot is used instead. If that also is"
183
185
" *NULL*, the new type derives from :class:`object`."
184
186
msgstr ""
185
187
186
- #: ../../c-api/type.rst:129
188
+ #: ../../c-api/type.rst:130
187
189
msgid "This function calls :c:func:`PyType_Ready` on the new type."
188
190
msgstr ""
189
191
190
- #: ../../c-api/type.rst:135
192
+ #: ../../c-api/type.rst:136
191
193
msgid "Equivalent to ``PyType_FromSpecWithBases(spec, NULL)``."
192
194
msgstr ""
193
195
194
- #: ../../c-api/type.rst:139
196
+ #: ../../c-api/type.rst:140
195
197
msgid "Structure defining a type's behavior."
196
198
msgstr ""
197
199
198
- #: ../../c-api/type.rst:143
200
+ #: ../../c-api/type.rst:144
199
201
msgid "Name of the type, used to set :c:member:`PyTypeObject.tp_name`."
200
202
msgstr ""
201
203
202
- #: ../../c-api/type.rst:148
204
+ #: ../../c-api/type.rst:149
203
205
msgid ""
204
206
"Size of the instance in bytes, used to set "
205
207
":c:member:`PyTypeObject.tp_basicsize` and "
206
208
":c:member:`PyTypeObject.tp_itemsize`."
207
209
msgstr ""
208
210
209
- #: ../../c-api/type.rst:154
211
+ #: ../../c-api/type.rst:155
210
212
msgid "Type flags, used to set :c:member:`PyTypeObject.tp_flags`."
211
213
msgstr ""
212
214
213
- #: ../../c-api/type.rst:156
215
+ #: ../../c-api/type.rst:157
214
216
msgid ""
215
217
"If the ``Py_TPFLAGS_HEAPTYPE`` flag is not set, "
216
218
":c:func:`PyType_FromSpecWithBases` sets it automatically."
217
219
msgstr ""
218
220
219
- #: ../../c-api/type.rst:161
221
+ #: ../../c-api/type.rst:162
220
222
msgid ""
221
223
"Array of :c:type:`PyType_Slot` structures. Terminated by the special slot "
222
224
"value ``{0, NULL}``."
223
225
msgstr ""
224
226
225
- #: ../../c-api/type.rst:166
227
+ #: ../../c-api/type.rst:167
226
228
msgid ""
227
229
"Structure defining optional functionality of a type, containing a slot ID "
228
230
"and a value pointer."
229
231
msgstr ""
230
232
231
- #: ../../c-api/type.rst:171
233
+ #: ../../c-api/type.rst:172
232
234
msgid "A slot ID."
233
235
msgstr ""
234
236
235
- #: ../../c-api/type.rst:173
237
+ #: ../../c-api/type.rst:174
236
238
msgid ""
237
239
"Slot IDs are named like the field names of the structures "
238
240
":c:type:`PyTypeObject`, :c:type:`PyNumberMethods`, "
239
241
":c:type:`PySequenceMethods`, :c:type:`PyMappingMethods` and "
240
242
":c:type:`PyAsyncMethods` with an added ``Py_`` prefix. For example, use:"
241
243
msgstr ""
242
244
243
- #: ../../c-api/type.rst:179
245
+ #: ../../c-api/type.rst:180
244
246
msgid "``Py_tp_dealloc`` to set :c:member:`PyTypeObject.tp_dealloc`"
245
247
msgstr ""
246
248
247
- #: ../../c-api/type.rst:180
249
+ #: ../../c-api/type.rst:181
248
250
msgid "``Py_nb_add`` to set :c:member:`PyNumberMethods.nb_add`"
249
251
msgstr ""
250
252
251
- #: ../../c-api/type.rst:181
253
+ #: ../../c-api/type.rst:182
252
254
msgid "``Py_sq_length`` to set :c:member:`PySequenceMethods.sq_length`"
253
255
msgstr ""
254
256
255
- #: ../../c-api/type.rst:183
257
+ #: ../../c-api/type.rst:184
256
258
msgid ""
257
259
"The following fields cannot be set using *PyType_Spec* and *PyType_Slot*:"
258
260
msgstr ""
259
261
260
- #: ../../c-api/type.rst:185
262
+ #: ../../c-api/type.rst:186
261
263
msgid ":c:member:`~PyTypeObject.tp_dict`"
262
264
msgstr ""
263
265
264
- #: ../../c-api/type.rst:186
266
+ #: ../../c-api/type.rst:187
265
267
msgid ":c:member:`~PyTypeObject.tp_mro`"
266
268
msgstr ""
267
269
268
- #: ../../c-api/type.rst:187
270
+ #: ../../c-api/type.rst:188
269
271
msgid ":c:member:`~PyTypeObject.tp_cache`"
270
272
msgstr ""
271
273
272
- #: ../../c-api/type.rst:188
274
+ #: ../../c-api/type.rst:189
273
275
msgid ":c:member:`~PyTypeObject.tp_subclasses`"
274
276
msgstr ""
275
277
276
- #: ../../c-api/type.rst:189
278
+ #: ../../c-api/type.rst:190
277
279
msgid ":c:member:`~PyTypeObject.tp_weaklist`"
278
280
msgstr ""
279
281
280
- #: ../../c-api/type.rst:190
282
+ #: ../../c-api/type.rst:191
281
283
msgid ":c:member:`~PyTypeObject.tp_print`"
282
284
msgstr ""
283
285
284
- #: ../../c-api/type.rst:191
286
+ #: ../../c-api/type.rst:192
285
287
msgid ":c:member:`~PyTypeObject.tp_weaklistoffset`"
286
288
msgstr ""
287
289
288
- #: ../../c-api/type.rst:192
290
+ #: ../../c-api/type.rst:193
289
291
msgid ":c:member:`
D88B
~PyTypeObject.tp_dictoffset`"
290
292
msgstr ""
291
293
292
- #: ../../c-api/type.rst:193
294
+ #: ../../c-api/type.rst:194
293
295
msgid ":c:member:`~PyBufferProcs.bf_getbuffer`"
294
296
msgstr ""
295
297
296
- #: ../../c-api/type.rst:194
298
+ #: ../../c-api/type.rst:195
297
299
msgid ":c:member:`~PyBufferProcs.bf_releasebuffer`"
298
300
msgstr ""
299
301
300
- #: ../../c-api/type.rst:196
302
+ #: ../../c-api/type.rst:197
301
303
msgid ""
302
304
"Setting :c:data:`Py_tp_bases` may be problematic on some platforms. To avoid"
303
305
" issues, use the *bases* argument of :py:func:`PyType_FromSpecWithBases` "
304
306
"instead."
305
307
msgstr ""
306
308
307
- #: ../../c-api/type.rst:202
309
+ #: ../../c-api/type.rst:203
308
310
msgid ""
309
311
"The desired value of the slot. In most cases, this is a pointer to a "
310
312
"function."
311
313
msgstr ""
312
314
313
- #: ../../c-api/type.rst:205
315
+ #: ../../c-api/type.rst:206
314
316
msgid "May not be *NULL*."
315
317
msgstr ""
0 commit comments