@@ -14,7 +14,7 @@ msgid ""
14
14
msgstr ""
15
15
"Project-Id-Version : Python 3.7\n "
16
16
"Report-Msgid-Bugs-To : \n "
17
- "POT-Creation-Date : 2019-01-01 10:14 +0900\n "
17
+ "POT-Creation-Date : 2019-06-18 11:40 +0900\n "
18
18
"PO-Revision-Date : 2017-02-16 17:38+0000\n "
19
19
"Last-Translator : tomo, 2018\n "
20
20
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -363,31 +363,33 @@ msgstr ""
363
363
"*args* は *NULL* であってはならず、引数を必要としない場合は空のタプルを使ってください。\n"
364
364
"*kwargs* は *NULL* でも構いません。"
365
365
366
- #: ../../c-api/object.rst:264 ../../c-api/object.rst:275
367
- #: ../../c-api/object.rst:286 ../../c-api/object.rst:305
368
- #: ../../c-api/object.rst:323
369
- msgid "Returns the result of the call on success, or *NULL* on failure."
370
- msgstr "成功したら呼び出しの結果を返します。失敗したら *NULL* を返します。"
366
+ #: ../../c-api/object.rst:264 ../../c-api/object.rst:276
367
+ #: ../../c-api/object.rst:288 ../../c-api/object.rst:308
368
+ #: ../../c-api/object.rst:327 ../../c-api/object.rst:341
369
+ msgid ""
370
+ "Return the result of the call on success, or raise an exception and return "
371
+ "*NULL* on failure."
372
+ msgstr ""
371
373
372
- #: ../../c-api/object.rst:266
374
+ #: ../../c-api/object.rst:267
373
375
msgid ""
374
376
"This is the equivalent of the Python expression: ``callable(*args, "
375
377
"**kwargs)``."
376
378
msgstr "これは次の Python の式と同等です: ``callable(*args, **kwargs)`` 。"
377
379
378
- #: ../../c-api/object.rst:272
380
+ #: ../../c-api/object.rst:273
379
381
msgid ""
380
382
"Call a callable Python object *callable*, with arguments given by the tuple "
381
383
"*args*. If no arguments are needed, then *args* can be *NULL*."
382
384
msgstr ""
383
385
"呼び出し可能な Python のオブジェクト *callable* を、タプル *args* として与えられる引数とともに呼び出します。\n"
384
386
"引数が必要な場合は、 *args* は *NULL* で構いません。"
385
387
386
- #: ../../c-api/object.rst:277 ../../c-api/object.rst:288
388
+ #: ../../c-api/object.rst:279 ../../c-api/object.rst:291
387
389
msgid "This is the equivalent of the Python expression: ``callable(*args)``."
388
390
msgstr "これは次の Python の式と同等です: ``callable(*args)`` 。"
389
391
390
- #: ../../c-api/object.rst:282
392
+ #: ../../c-api/object.rst:284
391
393
msgid ""
392
394
"Call a callable Python object *callable*, with a variable number of C "
393
395
"arguments. The C arguments are described using a :c:func:`Py_BuildValue` "
@@ -398,19 +400,19 @@ msgstr ""
398
400
"C 引数は :c:func:`Py_BuildValue` 形式のフォーマット文字列を使って記述します。\n"
399
401
" *format* は *NULL* かもしれず、与える引数がないことを表します。"
400
402
401
- #: ../../c-api/object.rst:290
403
+ #: ../../c-api/object.rst:293
402
404
msgid ""
403
405
"Note that if you only pass :c:type:`PyObject \\ *` args, "
404
406
":c:func:`PyObject_CallFunctionObjArgs` is a faster alternative."
405
407
msgstr ""
406
408
":c:type:`PyObject \\ *` args だけを引数に渡す場合は、 "
407
409
":c:func:`PyObject_CallFunctionObjArgs` がより速い方法であることを覚えておいてください。 "
408
410
409
- #: ../../c-api/object.rst:293
411
+ #: ../../c-api/object.rst:296
410
412
msgid "The type of *format* was changed from ``char *``."
411
413
msgstr "*format* の型が ``char *`` から変更されました。"
412
414
413
- #: ../../c-api/object.rst:299
415
+ #: ../../c-api/object.rst:302
414
416
msgid ""
415
417
"Call the method named *name* of object *obj* with a variable number of C "
416
418
"arguments. The C arguments are described by a :c:func:`Py_BuildValue` "
@@ -419,29 +421,29 @@ msgstr ""
419
421
"オブジェクト *obj* の *name* という名前のメソッドを、いくつかの C 引数とともに呼び出します。\n"
420
422
"C 引数はタプルを生成する :c:func:`Py_BuildValue` 形式のフォーマット文字列で記述されています。"
421
423
422
- #: ../../c-api/object.rst:303
424
+ #: ../../c-api/object.rst:306
423
425
msgid "The format can be *NULL*, indicating that no arguments are provided."
424
426
msgstr "*format* は *NULL* でもよく、引数が与えられないことを表します。 "
425
427
426
- #: ../../c-api/object.rst:307
428
+ #: ../../c-api/object.rst:311
427
429
msgid ""
428
430
"This is the equivalent of the Python expression: ``obj.name(arg1, arg2, "
429
431
"...)``."
430
432
msgstr "これは次の Python の式と同等です: ``obj.name(arg1, arg2, ...)`` 。"
431
433
432
- #: ../../c-api/object.rst:310
434
+ #: ../../c-api/object.rst:314
433
435
msgid ""
434
436
"Note that if you only pass :c:type:`PyObject \\ *` args, "
435
437
":c:func:`PyObject_CallMethodObjArgs` is a faster alternative."
436
438
msgstr ""
437
439
":c:type:`PyObject \\ *` args だけを引数に渡す場合は、 "
438
440
":c:func:`PyObject_CallMethodObjArgs` がより速い方法であることを覚えておいてください。 "
439
441
440
- #: ../../c-api/object.rst:313
442
+ #: ../../c-api/object.rst:317
441
443
msgid "The types of *name* and *format* were changed from ``char *``."
442
444
msgstr "*name* と *format* の型が ``char *`` から変更されました。"
443
445
444
- #: ../../c-api/object.rst:319
446
+ #: ../../c-api/object.rst:323
445
447
msgid ""
446
448
"Call a callable Python object *callable*, with a variable number of "
447
449
":c:type:`PyObject\\ *` arguments. The arguments are provided as a variable "
@@ -450,38 +452,34 @@ msgstr ""
450
452
"呼び出し可能な Python オブジェクト *callable* を可変数個の :c:type:`PyObject\\ *` "
451
453
"引数とともに呼び出します。引数列は末尾に *NULL* がついた可変数個のパラメタとして与えます。"
452
454
453
- #: ../../c-api/object.rst:325
455
+ #: ../../c-api/object.rst:330
454
456
msgid ""
455
457
"This is the equivalent of the Python expression: ``callable(arg1, arg2, "
456
458
"...)``."
457
459
msgstr "これは次の Python の式と同等です: ``callable(arg1, arg2, ...)`` 。"
458
460
459
- #: ../../c-api/object.rst:331
461
+ #: ../../c-api/object.rst:336
460
462
msgid ""
461
463
"Calls a method of the Python object *obj*, where the name of the method is "
462
464
"given as a Python string object in *name*. It is called with a variable "
463
465
"number of :c:type:`PyObject\\ *` arguments. The arguments are provided as a "
464
- "variable number of parameters followed by *NULL*. Returns the result of the "
465
- "call on success, or *NULL* on failure."
466
+ "variable number of parameters followed by *NULL*."
466
467
msgstr ""
467
- "Python オブジェクト *obj* のメソッドを呼び出します、メソッド名は Python 文字列オブジェクト *name* で与えます。可変数個の "
468
- ":c:type:`PyObject\\ *` 引数と共に呼び出されます. 引数列は末尾に *NULL* "
469
- "がついた可変数個のパラメタとして与えます。成功すると呼び出し結果として得られたオブジェクトを返し失敗すると *NULL* を返します。"
470
468
471
- #: ../../c-api/object.rst:342
469
+ #: ../../c-api/object.rst:349
472
470
msgid ""
473
471
"Compute and return the hash value of an object *o*. On failure, return "
474
472
"``-1``. This is the equivalent of the Python expression ``hash(o)``."
475
473
msgstr ""
476
474
"オブジェクト *o* のハッシュ値を計算して返します。失敗すると ``-1`` を返します。 Python の式 ``hash(o)`` と同じです。"
477
475
478
- #: ../../c-api/object.rst:345
476
+ #: ../../c-api/object.rst:352
479
477
msgid ""
480
478
"The return type is now Py_hash_t. This is a signed integer the same size as"
481
479
" Py_ssize_t."
482
480
msgstr "返り値の型が Py_hash_t になりました。この型は、 Py_ssize_t と同じサイズをもつ符号付き整数です。"
483
481
484
- #: ../../c-api/object.rst:352
482
+ #: ../../c-api/object.rst:359
485
483
msgid ""
486
484
"Set a :exc:`TypeError` indicating that ``type(o)`` is not hashable and "
487
485
"return ``-1``. This function receives special treatment when stored in a "
@@ -491,7 +489,7 @@ msgstr ""
491
489
"``type(o)`` がハッシュ不可能であることを示す :exc:`TypeError` を設定し、 ``-1`` を返します。この関数は "
492
490
"``tp_hash`` スロットに格納されたときには特別な扱いを受け、その type がハッシュ不可能であることをインタプリタに明示的に示します。"
493
491
494
- #: ../../c-api/object.rst:360
492
+ #: ../../c-api/object.rst:367
495
493
msgid ""
496
494
"Returns ``1`` if the object *o* is considered to be true, and ``0`` "
497
495
"otherwise. This is equivalent to the Python expression ``not not o``. On "
@@ -500,7 +498,7 @@ msgstr ""
500
498
"*o* が真を表すとみなせる場合には ``1`` を、そうでないときには ``0`` を返します。 Python の式 ``not not o`` "
501
499
"と同じです。失敗すると ``-1`` を返します。"
502
500
503
- #: ../../c-api/object.rst:367
501
+ #: ../../c-api/object.rst:374
504
502
msgid ""
505
503
"Returns ``0`` if the object *o* is considered to be true, and ``1`` "
506
504
"otherwise. This is equivalent to the Python expression ``not o``. On "
@@ -509,7 +507,7 @@ msgstr ""
509
507
"*o* が真を表すとみなせる場合には ``0`` を、そうでないときには ``1`` を返します。 Python の式 ``not o`` "
510
508
"と同じです。失敗すると ``-1`` を返します。"
511
509
512
- #: ../../c-api/object.rst:376
510
+ #: ../../c-api/object.rst:383
513
511
msgid ""
514
512
"When *o* is non-*NULL*, returns a type object corresponding to the object "
515
513
"type of object *o*. On failure, raises :exc:`SystemError` and returns "
@@ -524,15 +522,15 @@ msgstr ""
524
522
"この関数は戻り値の参照カウントをインクリメントします。参照カウントのインクリメントが必要でない限り、広く使われていて "
525
523
":c:type:`PyTypeObject\\ *` 型のポインタを返す表記法 ``o->ob_type`` の代わりに使う理由は全くありません。"
526
524
527
- #: ../../c-api/object.rst:387
525
+ #: ../../c-api/object.rst:394
528
526
msgid ""
529
527
"Return true if the object *o* is of type *type* or a subtype of *type*. "
530
528
"Both parameters must be non-*NULL*."
531
529
msgstr ""
532
530
"オブジェクト *o* が、 *type* か *type* のサブタイプであるときに真を返します。どちらのパラメタも *NULL* "
533
531
"であってはなりません。"
534
532
535
- #: ../../c-api/object.rst:396
533
+ #: ../../c-api/object.rst:403
536
534
msgid ""
537
535
"Return the length of object *o*. If the object *o* provides either the "
538
536
"sequence and mapping protocols, the sequence length is returned. On error, "
@@ -543,7 +541,7 @@ msgstr ""
543
541
"がシーケンス型プロトコルとマップ型プロトコルの両方を提供している場合、シーケンスとしての長さを返します。エラーが生じると ``-1`` を返します。 "
544
542
"Python の式 ``len(o)`` と同じです。"
545
543
546
- #: ../../c-api/object.rst:403
544
+ #: ../../c-api/object.rst:410
547
545
msgid ""
548
546
"Return an estimated length for the object *o*. First try to return its "
549
547
"actual length, then an estimate using :meth:`~object.__length_hint__`, and "
@@ -554,15 +552,15 @@ msgstr ""
554
552
"最初に実際の長さを、次に :meth:`~object.__length_hint__` を使って概算の長さを、そして最後にデフォルトの値を返そうとします。\n"
555
553
"この関数は Python の式 ``operator.length_hint(o, default)`` と同じです。"
556
554
557
- #: ../../c-api/object.rst:413
555
+ #: ../../c-api/object.rst:420
558
556
msgid ""
559
557
"Return element of *o* corresponding to the object *key* or *NULL* on "
560
558
"failure. This is the equivalent of the Python expression ``o[key]``."
561
559
msgstr ""
562
560
"オブジェクト *key* に対応する *o* の要素を返します。失敗すると *NULL* を返します。Python の式 ``o[key]`` "
563
561
"と同じです。"
564
562
565
- #: ../../c-api/object.rst:419
563
+ #: ../../c-api/object.rst:426
566
564
msgid ""
567
565
"Map the object *key* to the value *v*. Raise an exception and return ``-1``"
568
566
" on failure; return ``0`` on success. This is the equivalent of the Python "
@@ -572,15 +570,15 @@ msgstr ""
572
570
"失敗すると例外を送出し ``-1`` を返します; 成功すると ``0`` を返します。\n"
573
571
"Python の文 ``o[key] = v`` と同じです。"
574
572
575
- #: ../../c-api/object.rst:426
573
+ #: ../../c-api/object.rst:433
576
574
msgid ""
577
575
"Remove the mapping for the object *key* from the object *o*. Return ``-1`` "
578
576
"on failure. This is equivalent to the Python statement ``del o[key]``."
579
577
msgstr ""
580
578
"オブジェクト *o* から *key* に関する対応付けを削除します。失敗すると ``-1`` を返します。Python の文 ``del "
581
579
"o[key]`` と同じです。"
582
580
583
- #: ../../c-api/object.rst:432
581
+ #: ../../c-api/object.rst:439
584
582
msgid ""
585
583
"This is equivalent to the Python expression ``dir(o)``, returning a "
586
584
"(possibly empty) list of strings appropriate for the object argument, or "
@@ -594,7 +592,7 @@ msgstr ""
594
592
"と同様に、現在のローカルな名前を返します; この場合、アクティブな実行フレームがなければ *NULL* を返しますが、 "
595
593
":c:func:`PyErr_Occurred` は偽を返します。"
596
594
597
- #: ../../c-api/object.rst:441
595
+ #: ../../c-api/object.rst:448
598
596
msgid ""
599
597
"This is equivalent to the Python expression ``iter(o)``. It returns a new "
600
598
"iterator for the object argument, or the object itself if the object is "
0 commit comments