Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit3c0a00d

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent440d9ea commit3c0a00d

File tree

3 files changed

+4311
-4284
lines changed

3 files changed

+4311
-4284
lines changed

‎c-api/object.po

Lines changed: 37 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version:Python 3.7\n"
1616
"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"
1818
"PO-Revision-Date:2017-02-16 17:38+0000\n"
1919
"Last-Translator:tomo, 2018\n"
2020
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -363,31 +363,33 @@ msgstr ""
363363
"*args* は *NULL* であってはならず、引数を必要としない場合は空のタプルを使ってください。\n"
364364
"*kwargs* は *NULL* でも構いません。"
365365

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""
371373

372-
#:../../c-api/object.rst:266
374+
#:../../c-api/object.rst:267
373375
msgid""
374376
"This is the equivalent of the Python expression: ``callable(*args, "
375377
"**kwargs)``."
376378
msgstr"これは次の Python の式と同等です: ``callable(*args, **kwargs)`` 。"
377379

378-
#:../../c-api/object.rst:272
380+
#:../../c-api/object.rst:273
379381
msgid""
380382
"Call a callable Python object *callable*, with arguments given by the tuple "
381383
"*args*. If no arguments are needed, then *args* can be *NULL*."
382384
msgstr""
383385
"呼び出し可能な Python のオブジェクト *callable* を、タプル *args* として与えられる引数とともに呼び出します。\n"
384386
"引数が必要な場合は、 *args* は *NULL* で構いません。"
385387

386-
#:../../c-api/object.rst:277../../c-api/object.rst:288
388+
#:../../c-api/object.rst:279../../c-api/object.rst:291
387389
msgid"This is the equivalent of the Python expression: ``callable(*args)``."
388390
msgstr"これは次の Python の式と同等です: ``callable(*args)`` 。"
389391

390-
#:../../c-api/object.rst:282
392+
#:../../c-api/object.rst:284
391393
msgid""
392394
"Call a callable Python object *callable*, with a variable number of C "
393395
"arguments. The C arguments are described using a :c:func:`Py_BuildValue` "
@@ -398,19 +400,19 @@ msgstr ""
398400
"C 引数は :c:func:`Py_BuildValue` 形式のフォーマット文字列を使って記述します。\n"
399401
" *format* は *NULL* かもしれず、与える引数がないことを表します。"
400402

401-
#:../../c-api/object.rst:290
403+
#:../../c-api/object.rst:293
402404
msgid""
403405
"Note that if you only pass :c:type:`PyObject\\*` args, "
404406
":c:func:`PyObject_CallFunctionObjArgs` is a faster alternative."
405407
msgstr""
406408
":c:type:`PyObject\\*` args だけを引数に渡す場合は、 "
407409
":c:func:`PyObject_CallFunctionObjArgs` がより速い方法であることを覚えておいてください。 "
408410

409-
#:../../c-api/object.rst:293
411+
#:../../c-api/object.rst:296
410412
msgid"The type of *format* was changed from ``char *``."
411413
msgstr"*format* の型が ``char *`` から変更されました。"
412414

413-
#:../../c-api/object.rst:299
415+
#:../../c-api/object.rst:302
414416
msgid""
415417
"Call the method named *name* of object *obj* with a variable number of C "
416418
"arguments. The C arguments are described by a :c:func:`Py_BuildValue` "
@@ -419,29 +421,29 @@ msgstr ""
419421
"オブジェクト *obj* の *name* という名前のメソッドを、いくつかの C 引数とともに呼び出します。\n"
420422
"C 引数はタプルを生成する :c:func:`Py_BuildValue` 形式のフォーマット文字列で記述されています。"
421423

422-
#:../../c-api/object.rst:303
424+
#:../../c-api/object.rst:306
423425
msgid"The format can be *NULL*, indicating that no arguments are provided."
424426
msgstr"*format* は *NULL* でもよく、引数が与えられないことを表します。 "
425427

426-
#:../../c-api/object.rst:307
428+
#:../../c-api/object.rst:311
427429
msgid""
428430
"This is the equivalent of the Python expression: ``obj.name(arg1, arg2, "
429431
"...)``."
430432
msgstr"これは次の Python の式と同等です: ``obj.name(arg1, arg2, ...)`` 。"
431433

432-
#:../../c-api/object.rst:310
434+
#:../../c-api/object.rst:314
433435
msgid""
434436
"Note that if you only pass :c:type:`PyObject\\*` args, "
435437
":c:func:`PyObject_CallMethodObjArgs` is a faster alternative."
436438
msgstr""
437439
":c:type:`PyObject\\*` args だけを引数に渡す場合は、 "
438440
":c:func:`PyObject_CallMethodObjArgs` がより速い方法であることを覚えておいてください。 "
439441

440-
#:../../c-api/object.rst:313
442+
#:../../c-api/object.rst:317
441443
msgid"The types of *name* and *format* were changed from ``char *``."
442444
msgstr"*name* と *format* の型が ``char *`` から変更されました。"
443445

444-
#:../../c-api/object.rst:319
446+
#:../../c-api/object.rst:323
445447
msgid""
446448
"Call a callable Python object *callable*, with a variable number of "
447449
":c:type:`PyObject\\*` arguments. The arguments are provided as a variable "
@@ -450,38 +452,34 @@ msgstr ""
450452
"呼び出し可能な Python オブジェクト *callable* を可変数個の :c:type:`PyObject\\*` "
451453
"引数とともに呼び出します。引数列は末尾に *NULL* がついた可変数個のパラメタとして与えます。"
452454

453-
#:../../c-api/object.rst:325
455+
#:../../c-api/object.rst:330
454456
msgid""
455457
"This is the equivalent of the Python expression: ``callable(arg1, arg2, "
456458
"...)``."
457459
msgstr"これは次の Python の式と同等です: ``callable(arg1, arg2, ...)`` 。"
458460

459-
#:../../c-api/object.rst:331
461+
#:../../c-api/object.rst:336
460462
msgid""
461463
"Calls a method of the Python object *obj*, where the name of the method is "
462464
"given as a Python string object in *name*. It is called with a variable "
463465
"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*."
466467
msgstr""
467-
"Python オブジェクト *obj* のメソッドを呼び出します、メソッド名は Python 文字列オブジェクト *name* で与えます。可変数個の "
468-
":c:type:`PyObject\\*` 引数と共に呼び出されます. 引数列は末尾に *NULL* "
469-
"がついた可変数個のパラメタとして与えます。成功すると呼び出し結果として得られたオブジェクトを返し失敗すると *NULL* を返します。"
470468

471-
#:../../c-api/object.rst:342
469+
#:../../c-api/object.rst:349
472470
msgid""
473471
"Compute and return the hash value of an object *o*. On failure, return "
474472
"``-1``. This is the equivalent of the Python expression ``hash(o)``."
475473
msgstr""
476474
"オブジェクト *o* のハッシュ値を計算して返します。失敗すると ``-1`` を返します。 Python の式 ``hash(o)`` と同じです。"
477475

478-
#:../../c-api/object.rst:345
476+
#:../../c-api/object.rst:352
479477
msgid""
480478
"The return type is now Py_hash_t. This is a signed integer the same size as"
481479
" Py_ssize_t."
482480
msgstr"返り値の型が Py_hash_t になりました。この型は、 Py_ssize_t と同じサイズをもつ符号付き整数です。"
483481

484-
#:../../c-api/object.rst:352
482+
#:../../c-api/object.rst:359
485483
msgid""
486484
"Set a :exc:`TypeError` indicating that ``type(o)`` is not hashable and "
487485
"return ``-1``. This function receives special treatment when stored in a "
@@ -491,7 +489,7 @@ msgstr ""
491489
"``type(o)`` がハッシュ不可能であることを示す :exc:`TypeError` を設定し、 ``-1`` を返します。この関数は "
492490
"``tp_hash`` スロットに格納されたときには特別な扱いを受け、その type がハッシュ不可能であることをインタプリタに明示的に示します。"
493491

494-
#:../../c-api/object.rst:360
492+
#:../../c-api/object.rst:367
495493
msgid""
496494
"Returns ``1`` if the object *o* is considered to be true, and ``0`` "
497495
"otherwise. This is equivalent to the Python expression ``not not o``. On "
@@ -500,7 +498,7 @@ msgstr ""
500498
"*o* が真を表すとみなせる場合には ``1`` を、そうでないときには ``0`` を返します。 Python の式 ``not not o`` "
501499
"と同じです。失敗すると ``-1`` を返します。"
502500

503-
#:../../c-api/object.rst:367
501+
#:../../c-api/object.rst:374
504502
msgid""
505503
"Returns ``0`` if the object *o* is considered to be true, and ``1`` "
506504
"otherwise. This is equivalent to the Python expression ``not o``. On "
@@ -509,7 +507,7 @@ msgstr ""
509507
"*o* が真を表すとみなせる場合には ``0`` を、そうでないときには ``1`` を返します。 Python の式 ``not o`` "
510508
"と同じです。失敗すると ``-1`` を返します。"
511509

512-
#:../../c-api/object.rst:376
510+
#:../../c-api/object.rst:383
513511
msgid""
514512
"When *o* is non-*NULL*, returns a type object corresponding to the object "
515513
"type of object *o*. On failure, raises :exc:`SystemError` and returns "
@@ -524,15 +522,15 @@ msgstr ""
524522
"この関数は戻り値の参照カウントをインクリメントします。参照カウントのインクリメントが必要でない限り、広く使われていて "
525523
":c:type:`PyTypeObject\\*` 型のポインタを返す表記法 ``o->ob_type`` の代わりに使う理由は全くありません。"
526524

527-
#:../../c-api/object.rst:387
525+
#:../../c-api/object.rst:394
528526
msgid""
529527
"Return true if the object *o* is of type *type* or a subtype of *type*. "
530528
"Both parameters must be non-*NULL*."
531529
msgstr""
532530
"オブジェクト *o* が、 *type* か *type* のサブタイプであるときに真を返します。どちらのパラメタも *NULL* "
533531
"であってはなりません。"
534532

535-
#:../../c-api/object.rst:396
533+
#:../../c-api/object.rst:403
536534
msgid""
537535
"Return the length of object *o*. If the object *o* provides either the "
538536
"sequence and mapping protocols, the sequence length is returned. On error, "
@@ -543,7 +541,7 @@ msgstr ""
543541
"がシーケンス型プロトコルとマップ型プロトコルの両方を提供している場合、シーケンスとしての長さを返します。エラーが生じると ``-1`` を返します。 "
544542
"Python の式 ``len(o)`` と同じです。"
545543

546-
#:../../c-api/object.rst:403
544+
#:../../c-api/object.rst:410
547545
msgid""
548546
"Return an estimated length for the object *o*. First try to return its "
549547
"actual length, then an estimate using :meth:`~object.__length_hint__`, and "
@@ -554,15 +552,15 @@ msgstr ""
554552
"最初に実際の長さを、次に :meth:`~object.__length_hint__` を使って概算の長さを、そして最後にデフォルトの値を返そうとします。\n"
555553
"この関数は Python の式 ``operator.length_hint(o, default)`` と同じです。"
556554

557-
#:../../c-api/object.rst:413
555+
#:../../c-api/object.rst:420
558556
msgid""
559557
"Return element of *o* corresponding to the object *key* or *NULL* on "
560558
"failure. This is the equivalent of the Python expression ``o[key]``."
561559
msgstr""
562560
"オブジェクト *key* に対応する *o* の要素を返します。失敗すると *NULL* を返します。Python の式 ``o[key]`` "
563561
"と同じです。"
564562

565-
#:../../c-api/object.rst:419
563+
#:../../c-api/object.rst:426
566564
msgid""
567565
"Map the object *key* to the value *v*. Raise an exception and return ``-1``"
568566
" on failure; return ``0`` on success. This is the equivalent of the Python "
@@ -572,15 +570,15 @@ msgstr ""
572570
"失敗すると例外を送出し ``-1`` を返します; 成功すると ``0`` を返します。\n"
573571
"Python の文 ``o[key] = v`` と同じです。"
574572

575-
#:../../c-api/object.rst:426
573+
#:../../c-api/object.rst:433
576574
msgid""
577575
"Remove the mapping for the object *key* from the object *o*. Return ``-1`` "
578576
"on failure. This is equivalent to the Python statement ``del o[key]``."
579577
msgstr""
580578
"オブジェクト *o* から *key* に関する対応付けを削除します。失敗すると ``-1`` を返します。Python の文 ``del "
581579
"o[key]`` と同じです。"
582580

583-
#:../../c-api/object.rst:432
581+
#:../../c-api/object.rst:439
584582
msgid""
585583
"This is equivalent to the Python expression ``dir(o)``, returning a "
586584
"(possibly empty) list of strings appropriate for the object argument, or "
@@ -594,7 +592,7 @@ msgstr ""
594592
"と同様に、現在のローカルな名前を返します; この場合、アクティブな実行フレームがなければ *NULL* を返しますが、 "
595593
":c:func:`PyErr_Occurred` は偽を返します。"
596594

597-
#:../../c-api/object.rst:441
595+
#:../../c-api/object.rst:448
598596
msgid""
599597
"This is equivalent to the Python expression ``iter(o)``. It returns a new "
600598
"iterator for the object argument, or the object itself if the object is "

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp