@@ -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-01 14:24 +0000\n "
17
+ "POT-Creation-Date : 2019-09-15 11:27 +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 "
@@ -199,121 +199,117 @@ msgstr ""
199
199
msgid "Name of the type, used to set :c:member:`PyTypeObject.tp_name`."
200
200
msgstr ""
201
201
202
- #: ../../c-api/type.rst:147
203
- msgid "Type docstring, used to set :c:member:`PyTypeObject.tp_doc`."
204
- msgstr ""
205
-
206
- #: ../../c-api/type.rst:152
202
+ #: ../../c-api/type.rst:148
207
203
msgid ""
208
204
"Size of the instance in bytes, used to set "
209
205
":c:member:`PyTypeObject.tp_basicsize` and "
210
206
":c:member:`PyTypeObject.tp_itemsize`."
211
207
msgstr ""
212
208
213
- #: ../../c-api/type.rst:158
209
+ #: ../../c-api/type.rst:154
214
210
msgid "Type flags, used to set :c:member:`PyTypeObject.tp_flags`."
215
211
msgstr ""
216
212
217
- #: ../../c-api/type.rst:160
213
+ #: ../../c-api/type.rst:156
218
214
msgid ""
219
215
"If the ``Py_TPFLAGS_HEAPTYPE`` flag is not set, "
220
216
":c:func:`PyType_FromSpecWithBases` sets it automatically."
221
217
msgstr ""
222
218
223
- #: ../../c-api/type.rst:165
219
+ #: ../../c-api/type.rst:161
224
220
msgid ""
225
221
"Array of :c:type:`PyType_Slot` structures. Terminated by the special slot "
226
222
"value ``{0, NULL}``."
227
223
msgstr ""
228
224
229
- #: ../../c-api/type.rst:170
225
+ #: ../../c-api/type.rst:166
230
226
msgid ""
231
227
"Structure defining optional functionality of a type, containing a slot ID "
232
228
"and a value pointer."
233
229
msgstr ""
234
230
235
- #: ../../c-api/type.rst:175
231
+ #: ../../c-api/type.rst:171
236
232
msgid "A slot ID."
237
233
msgstr ""
238
234
239
- #: ../../c-api/type.rst:177
235
+ #: ../../c-api/type.rst:173
240
236
msgid ""
241
237
"Slot IDs are named like the field names of the structures "
242
238
":c:type:`PyTypeObject`, :c:type:`PyNumberMethods`, "
243
239
":c:type:`PySequenceMethods`, :c:type:`PyMappingMethods` and "
244
240
":c:type:`PyAsyncMethods` with an added ``Py_`` prefix. For example, use:"
245
241
msgstr ""
246
242
247
- #: ../../c-api/type.rst:183
243
+ #: ../../c-api/type.rst:179
248
244
msgid "``Py_tp_dealloc`` to set :c:member:`PyTypeObject.tp_dealloc`"
249
245
msgstr ""
250
246
251
- #: ../../c-api/type.rst:184
247
+ #: ../../c-api/type.rst:180
252
248
msgid "``Py_nb_add`` to set :c:member:`PyNumberMethods.nb_add`"
253
249
msgstr ""
254
250
255
- #: ../../c-api/type.rst:185
251
+ #: ../../c-api/type.rst:181
256
252
msgid "``Py_sq_length`` to set :c:member:`PySequenceMethods.sq_length`"
257
253
msgstr ""
258
254
259
- #: ../../c-api/type.rst:187
255
+ #: ../../c-api/type.rst:183
260
256
msgid ""
261
257
"The following fields cannot be set using *PyType_Spec* and *PyType_Slot*:"
262
258
msgstr ""
263
259
264
- #: ../../c-api/type.rst:189
260
+ #: ../../c-api/type.rst:185
265
261
msgid ":c:member:`~PyTypeObject.tp_dict`"
266
262
msgstr ""
267
263
268
- #: ../../c-api/type.rst:190
264
+ #: ../../c-api/type.rst:186
269
265
msgid ":c:member:`~PyTypeObject.tp_mro`"
270
266
msgstr ""
271
267
272
- #: ../../c-api/type.rst:191
268
+ #: ../../c-api/type.rst:187
273
269
msgid ":c:member:`~PyTypeObject.tp_cache`"
274
270
msgstr ""
275
271
276
- #: ../../c-api/type.rst:192
272
+ #: ../../c-api/type.rst:188
277
273
msgid ":c:member:`~PyTypeObject.tp_subclasses`"
278
274
msgstr ""
279
275
280
- #: ../../c-api/type.rst:193
276
+ #: ../../c-api/type.rst:189
281
277
msgid ":c:member:`~PyTypeObject.tp_weaklist`"
282
278
msgstr ""
283
279
284
- #: ../../c-api/type.rst:194
280
+ #: ../../c-api/type.rst:190
285
281
msgid ":c:member:`~PyTypeObject.tp_print`"
286
282
msgstr ""
287
283
288
- #: ../../c-api/type.rst:195
284
+ #: ../../c-api/type.rst:191
289
285
msgid ":c:member:`~PyTypeObject.tp_weaklistoffset`"
290
286
msgstr ""
291
287
292
- #: ../../c-api/type.rst:196
288
+ #: ../../c-api/type.rst:192
293
289
msgid ":c:member:`~PyTypeObject.tp_dictoffset`"
294
290
msgstr ""
295
291
296
- #: ../../c-api/type.rst:197
292
+ #: ../../c-api/type.rst:193
297
293
msgid ":c:member:`~PyBufferProcs.bf_getbuffer`"
298
294
msgstr ""
299
295
300
- #: ../../c-api/type.rst:198
296
+ #: ../../c-api/type.rst:194
301
297
msgid ":c:member:`~PyBufferProcs.bf_releasebuffer`"
302
298
msgstr ""
303
299
304
- #: ../../c-api/type.rst:200
300
+ #: ../../c-api/type.rst:196
305
301
msgid ""
306
302
"Setting :c:data:`Py_tp_bases` may be problematic on some platforms. To avoid"
307
303
" issues, use the *bases* argument of :py:func:`PyType_FromSpecWithBases` "
308
304
"instead."
309
305
msgstr ""
310
306
311
- #: ../../c-api/type.rst:206
307
+ #: ../../c-api/type.rst:202
312
308
msgid ""
313
309
"The desired value of the slot. In most cases, this is a pointer to a "
314
310
"function."
315
311
msgstr ""
316
312
317
- #: ../../c-api/type.rst:209
313
+ #: ../../c-api/type.rst:205
318
314
msgid "May not be *NULL*."
319
315
msgstr ""
0 commit comments