@@ -18,7 +18,7 @@ msgid ""
18
18
msgstr ""
19
19
"Project-Id-Version : Python 3.7\n "
20
20
"Report-Msgid-Bugs-To : \n "
21
- "POT-Creation-Date : 2019-05-30 11:32 +0900\n "
21
+ "POT-Creation-Date : 2019-06-15 11:43 +0900\n "
22
22
"PO-Revision-Date : 2017-02-16 23:03+0000\n "
23
23
"Last-Translator : Osamu NAKAMURA, 2017\n "
24
24
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -324,29 +324,28 @@ msgstr ""
324
324
325
325
#: ../../library/concurrent.futures.rst:296
326
326
msgid ""
327
- "Attempt to cancel the call. If the call is currently being executed and "
328
- "cannot be cancelled then the method will return ``False``, otherwise the "
329
- "call will be cancelled and the method will return ``True``."
327
+ "Attempt to cancel the call. If the call is currently being executed or "
328
+ "finished running and cannot be cancelled then the method will return "
329
+ "``False``, otherwise the call will be cancelled and the method will return "
330
+ "``True``."
330
331
msgstr ""
331
- "呼び出しのキャンセルを試みます。もし呼び出しが現在実行中でキャンセルすることができない場合、メソッドは ``False`` "
332
- "を返します。そうでない場合呼び出しはキャンセルされ、``True`` を返します。"
333
332
334
- #: ../../library/concurrent.futures.rst:302
333
+ #: ../../library/concurrent.futures.rst:303
335
334
msgid "Return ``True`` if the call was successfully cancelled."
336
335
msgstr "呼び出しが正常にキャンセルされた場合 ``True`` を返します。"
337
336
338
- #: ../../library/concurrent.futures.rst:306
337
+ #: ../../library/concurrent.futures.rst:307
339
338
msgid ""
340
339
"Return ``True`` if the call is currently being executed and cannot be "
341
340
"cancelled."
342
341
msgstr "現在呼び出しが実行中でキャンセルできない場合 ``True`` を返します。"
343
342
344
- #: ../../library/concurrent.futures.rst:311
343
+ #: ../../library/concurrent.futures.rst:312
345
344
msgid ""
346
345
"Return ``True`` if the call was successfully cancelled or finished running."
347
346
msgstr "呼び出しが正常にキャンセルされたか終了した場合 ``True`` を返します。"
348
347
349
- #: ../../library/concurrent.futures.rst:316
348
+ #: ../../library/concurrent.futures.rst:317
350
349
msgid ""
351
350
"Return the value returned by the call. If the call hasn't yet completed then"
352
351
" this method will wait up to *timeout* seconds. If the call hasn't "
@@ -360,18 +359,18 @@ msgstr ""
360
359
"*timeout* にはintかfloatを指定できます。*timeout* が指定されていないか、 ``None`` "
361
360
"である場合、待機時間に制限はありません。"
362
361
363
- #: ../../library/concurrent.futures.rst:323
364
- #: ../../library/concurrent.futures.rst:337
362
+ #: ../../library/concurrent.futures.rst:324
363
+ #: ../../library/concurrent.futures.rst:338
365
364
msgid ""
366
365
"If the future is cancelled before completing then :exc:`.CancelledError` "
367
366
"will be raised."
368
367
msgstr "future が完了する前にキャンセルされた場合 :exc:`CancelledError` が送出されます。"
369
368
370
- #: ../../library/concurrent.futures.rst:326
369
+ #: ../../library/concurrent.futures.rst:327
371
370
msgid "If the call raised, this method will raise the same exception."
372
371
msgstr "呼び出しが例外を送出した場合、このメソッドは同じ例外を送出します。"
373
372
374
- #: ../../library/concurrent.futures.rst:330
373
+ #: ../../library/concurrent.futures.rst:331
375
374
msgid ""
376
375
"Return the exception raised by the call. If the call hasn't yet completed "
377
376
"then this method will wait up to *timeout* seconds. If the call hasn't "
@@ -385,11 +384,11 @@ msgstr ""
385
384
"*timeout* にはintかfloatを指定できます。 *timeout* が指定されていないか、 ``None`` "
386
385
"である場合、待機時間に制限はありません。"
387
386
388
- #: ../../library/concurrent.futures.rst:340
387
+ #: ../../library/concurrent.futures.rst:341
389
388
msgid "If the call completed without raising, ``None`` is returned."
390
389
msgstr "呼び出しが例外を送出することなく完了した場合、``None`` を返します。"
391
390
392
- #: ../../library/concurrent.futures.rst:344
391
+ #: ../../library/concurrent.futures.rst:345
393
392
msgid ""
394
393
"Attaches the callable *fn* to the future. *fn* will be called, with the "
395
394
"future as its only argument, when the future is cancelled or finishes "
@@ -398,7 +397,7 @@ msgstr ""
398
397
"呼び出し可能な *fn* オブジェクトを future にアタッチします。futureがキャンセルされたか、実行を終了した際に、future "
399
398
"をそのただ一つの引数として *fn* が呼び出されます。"
400
399
401
- #: ../../library/concurrent.futures.rst:348
400
+ #: ../../library/concurrent.futures.rst:349
402
401
msgid ""
403
402
"Added callables are called in the order that they were added and are always "
404
403
"called in a thread belonging to the process that added them. If the "
@@ -410,20 +409,20 @@ msgstr ""
410
409
" :exc:`Exception` のサブクラスを送出した場合、それはログに記録され無視されます。呼び出し可能オブジェクトが "
411
410
":exc:`BaseException` のサブクラスを送出した場合の動作は未定義です。"
412
411
413
- #: ../../library/concurrent.futures.rst:354
412
+ #: ../../library/concurrent.futures.rst:355
414
413
msgid ""
415
414
"If the future has already completed or been cancelled, *fn* will be called "
416
415
"immediately."
417
416
msgstr "もしfutureがすでに完了しているか、キャンセル済みであれば、*fn* は即座に実行されます。"
418
417
419
- #: ../../library/concurrent.futures.rst:357
418
+ #: ../../library/concurrent.futures.rst:358
420
419
msgid ""
421
420
"The following :class:`Future` methods are meant for use in unit tests and "
422
421
":class:`Executor` implementations."
423
422
msgstr ""
424
423
"以下の :class:`Future` メソッドは、ユニットテストでの使用と :class:`Executor` を実装することを意図しています。"
425
424
426
- #: ../../library/concurrent.futures.rst:362
425
+ #: ../../library/concurrent.futures.rst:363
427
426
msgid ""
428
427
"This method should only be called by :class:`Executor` implementations "
429
428
"before executing the work associated with the :class:`Future` and by unit "
@@ -432,7 +431,7 @@ msgstr ""
432
431
"このメソッドは、:class:`Future` に関連付けられたワークやユニットテストによるワークの実行前に、 :class:`Executor` "
433
432
"の実装によってのみ呼び出してください。"
434
433
435
- #: ../../library/concurrent.futures.rst:366
434
+ #: ../../library/concurrent.futures.rst:367
436
435
msgid ""
437
436
"If the method returns ``False`` then the :class:`Future` was cancelled, i.e."
438
437
" :meth:`Future.cancel` was called and returned `True`. Any threads waiting "
@@ -443,7 +442,7 @@ msgstr ""
443
442
":meth:`Future.cancel` が呼び出されて `True` が返っています。:class:`Future` の完了を "
444
443
"(:func:`as_completed` または :func:`wait` により) 待機するすべてのスレッドが起動します。"
445
444
446
- #: ../../library/concurrent.futures.rst:371
445
+ #: ../../library/concurrent.futures.rst:372
447
446
msgid ""
448
447
"If the method returns ``True`` then the :class:`Future` was not cancelled "
449
448
"and has been put in the running state, i.e. calls to :meth:`Future.running` "
@@ -452,51 +451,48 @@ msgstr ""
452
451
"このメソッドが ``True`` を返す場合、 :class:`Future` はキャンセルされて、実行状態に移行されています。つまり、 "
453
452
":meth:`Future.running` を呼び出すと `True` が返ります。"
454
453
455
- #: ../../library/concurrent.futures.rst:375
454
+ #: ../../library/concurrent.futures.rst:376
456
455
msgid ""
457
456
"This method can only be called once and cannot be called after "
458
457
":meth:`Future.set_result` or :meth:`Future.set_exception` have been called."
459
458
msgstr ""
460
459
"このメソッドは、一度だけ呼び出すことができ、:meth:`Future.set_result` または "
461
460
":meth:`Future.set_exception` がキャンセルされた後には呼び出すことができません。"
462
461
463
- #: ../../library/concurrent.futures.rst:381
462
+ #: ../../library/concurrent.futures.rst:382
464
463
msgid ""
465
464
"Sets the result of the work associated with the :class:`Future` to *result*."
466
465
msgstr ":class:`Future` に関連付けられたワークの結果を *result* に設定します。"
467
466
468
- #: ../../library/concurrent.futures.rst:384
469
- #: ../../library/concurrent.futures.rst:392
467
+ #: ../../library/concurrent.futures.rst:385
468
+ #: ../../library/concurrent.futures.rst:393
470
469
msgid ""
471
470
"This method should only be used by :class:`Executor` implementations and "
472
471
"unit tests."
473
472
msgstr "このメソッドは、 :class:`Executor` の実装またはユニットテストによってのみ使用してください。"
474
473
475
- #: ../../library/concurrent.futures.rst:389
474
+ #: ../../library/concurrent.futures.rst:390
476
475
msgid ""
477
476
"Sets the result of the work associated with the :class:`Future` to the "
478
477
":class:`Exception` *exception*."
479
478
msgstr ""
480
479
":class:`Future` に関連付けられたワークの結果を :class:`Exception` *exception* に設定します。"
481
480
482
- #: ../../library/concurrent.futures.rst:397
481
+ #: ../../library/concurrent.futures.rst:398
483
482
msgid "Module Functions"
484
483
msgstr "モジュール関数"
485
484
486
- #: ../../library/concurrent.futures.rst:401
485
+ #: ../../library/concurrent.futures.rst:402
487
486
msgid ""
488
487
"Wait for the :class:`Future` instances (possibly created by different "
489
488
":class:`Executor` instances) given by *fs* to complete. Returns a named "
490
489
"2-tuple of sets. The first set, named ``done``, contains the futures that "
491
- "completed (finished or were cancelled) before the wait completed. The "
492
- "second set, named ``not_done``, contains uncompleted futures."
490
+ "completed (finished or cancelled futures) before the wait completed. The "
491
+ "second set, named ``not_done``, contains the futures that did not complete "
492
+ "(pending or running futures)."
493
493
msgstr ""
494
- "*fs* によって与えられた (別の :class:`Executor` インスタンスによって作成された可能性のある) 複数の "
495
- ":class:`Future` インスタンスの完了を待機します。集合型を 2 要素含む名前付きのタプルを返します。1 つめの集合 ``done`` "
496
- "には、待機の完了前に完了したフューチャ (完了またはキャンセル済み) が含まれます。2 つめの集合 ``not_done`` "
497
- "には、未完了のフューチャが含まれます。"
498
494
499
- #: ../../library/concurrent.futures.rst:407
495
+ #: ../../library/concurrent.futures.rst:409
500
496
msgid ""
501
497
"*timeout* can be used to control the maximum number of seconds to wait "
502
498
"before returning. *timeout* can be an int or float. If *timeout* is not "
@@ -505,33 +501,33 @@ msgstr ""
505
501
"*timeout* で結果を返すまで待機する最大秒数を指定できます。*timeout* は整数か浮動小数点数をとります。*timeout* "
506
502
"が指定されないか ``None`` の場合、無期限に待機します。"
507
503
508
- #: ../../library/concurrent.futures.rst:411
504
+ #: ../../library/concurrent.futures.rst:413
509
505
msgid ""
510
506
"*return_when* indicates when this function should return. It must be one of"
511
507
" the following constants:"
512
508
msgstr "*return_when* でこの関数がいつ結果を返すか指定します。指定できる値は以下の 定数のどれか一つです:"
513
509
514
- #: ../../library/concurrent.futures.rst:417
510
+ #: ../../library/concurrent.futures.rst:419
515
511
msgid "Constant"
516
512
msgstr "定数"
517
513
518
- #: ../../library/concurrent.futures.rst:417
514
+ #: ../../library/concurrent.futures.rst:419
519
515
msgid "Description"
520
516
msgstr "説明"
521
517
522
- #: ../../library/concurrent.futures.rst:419
518
+ #: ../../library/concurrent.futures.rst:421
523
519
msgid ":const:`FIRST_COMPLETED`"
524
520
msgstr ":const:`FIRST_COMPLETED`"
525
521
526
- #: ../../library/concurrent.futures.rst:419
522
+ #: ../../library/concurrent.futures.rst:421
527
523
msgid "The function will return when any future finishes or is cancelled."
528
524
msgstr "いずれかのフューチャが終了したかキャンセルされたときに返します。"
529
525
530
- #: ../../library/concurrent.futures.rst:422
526
+ #: ../../library/concurrent.futures.rst:424
531
527
msgid ":const:`FIRST_EXCEPTION`"
532
528
msgstr ":const:`FIRST_EXCEPTION`"
533
529
534
- #: ../../library/concurrent.futures.rst:422
530
+ #: ../../library/concurrent.futures.rst:424
535
531
msgid ""
536
532
"The function will return when any future finishes by raising an exception. "
537
533
"If no future raises an exception then it is equivalent to "
@@ -540,72 +536,65 @@ msgstr ""
540
536
"いずれかのフューチャが例外の送出で終了した場合に返します。例外を送出したフューチャがない場合は、:const:`ALL_COMPLETED` "
541
537
"と等価になります。"
542
538
543
- #: ../../library/concurrent.futures.rst:428
539
+ #: ../../library/concurrent.futures.rst:430
544
540
msgid ":const:`ALL_COMPLETED`"
545
541
msgstr ":const:`ALL_COMPLETED`"
546
542
547
- #: ../../library/concurrent.futures.rst:428
543
+ #: ../../library/concurrent.futures.rst:430
548
544
msgid "The function will return when all futures finish or are cancelled."
549
545
msgstr "すべてのフューチャが終了したかキャンセルされたときに返します。"
550
546
551
- #: ../../library/concurrent.futures.rst:434
547
+ #: ../../library/concurrent.futures.rst:436
552
548
msgid ""
553
549
"Returns an iterator over the :class:`Future` instances (possibly created by "
554
550
"different :class:`Executor` instances) given by *fs* that yields futures as "
555
- "they complete (finished or were cancelled). Any futures given by *fs* that "
556
- "are duplicated will be returned once. Any futures that completed before "
557
- ":func:`as_completed` is called will be yielded first. The returned iterator "
558
- " raises a :exc:`concurrent.futures.TimeoutError` if "
551
+ "they complete (finished or cancelled futures ). Any futures given by *fs* "
552
+ "that are duplicated will be returned once. Any futures that completed before"
553
+ " :func:`as_completed` is called will be yielded first. The returned "
554
+ "iterator raises a :exc:`concurrent.futures.TimeoutError` if "
559
555
":meth:`~iterator.__next__` is called and the result isn't available after "
560
556
"*timeout* seconds from the original call to :func:`as_completed`. *timeout*"
561
557
" can be an int or float. If *timeout* is not specified or ``None``, there is"
562
558
" no limit to the wait time."
563
559
msgstr ""
564
- "フューチャの完了時 (完了またはキャンセル) に yield する *fs* によって与えられた (別の :class:`Executor` "
565
- "インスタンスによって作成された可能性のある) 複数の :class:`Future` インスタンスのイテレータを返します。 "
566
- ":func:`as_completed` が呼び出される前に完了したすべてのフューチャは最初に yield "
567
- "されます。:meth:`~iterator.__next__` が呼び出され、その結果が :func:`as_completed` の元々の呼び出しから"
568
- " *timeout* 秒経った後も利用できない場合、返されるイタレータは :exc:`concurrent.futures.TimeoutError` "
569
- "を送出します。*timeout* は整数または浮動小数点数です。*timeout* が指定されないか ``None`` "
570
- "である場合、待ち時間に制限はありません。"
571
560
572
- #: ../../library/concurrent.futures.rst:448
561
+ #: ../../library/concurrent.futures.rst:450
573
562
msgid ":pep:`3148` -- futures - execute computations asynchronously"
574
563
msgstr ":pep:`3148` -- futures - execute computations asynchronously"
575
564
576
- #: ../../library/concurrent.futures.rst:448
565
+ #: ../../library/concurrent.futures.rst:450
577
566
msgid ""
578
567
"The proposal which described this feature for inclusion in the Python "
579
568
"standard library."
580
569
msgstr "この機能を Python 標準ライブラリに含めることを述べた提案です。"
581
570
582
- #: ../../library/concurrent.futures.rst:453
571
+ #: ../../library/concurrent.futures.rst:455
583
572
msgid "Exception classes"
584
573
msgstr "例外クラス"
585
574
586
- #: ../../library/concurrent.futures.rst:459
575
+ #: ../../library/concurrent.futures.rst:461
587
576
msgid "Raised when a future is cancelled."
588
577
msgstr "future がキャンセルされたときに送出されます。"
589
578
590
- #: ../../library/concurrent.futures.rst:463
579
+ #: ../../library/concurrent.futures.rst:465
591
580
msgid "Raised when a future operation exceeds the given timeout."
592
581
msgstr "future の操作が与えられたタイムアウトを超過したときに送出されます。"
593
582
594
- #: ../../library/concurrent.futures.rst:467
583
+ #: ../../library/concurrent.futures.rst:469
595
584
msgid ""
596
585
"Derived from :exc:`RuntimeError`, this exception class is raised when an "
597
586
"executor is broken for some reason, and cannot be used to submit or execute "
598
587
"new tasks."
599
588
msgstr ""
600
589
601
- #: ../../library/concurrent.futures.rst:477
590
+ #: ../../library/concurrent.futures.rst:479
602
591
msgid ""
603
592
"Derived from :exc:`~concurrent.futures.BrokenExecutor`, this exception class"
604
593
" is raised when one of the workers of a :class:`ThreadPoolExecutor` has "
605
594
"failed initializing."
606
595
msgstr ""
607
596
608
- #: ../../library/concurrent.futures.rst:487
597
+ #: ../../library/concurrent.futures.rst:489
609
598
msgid ""
610
599
"Derived from :exc:`~concurrent.futures.BrokenExecutor` (formerly "
611
600
":exc:`RuntimeError`), this exception class is raised when one of the workers"
0 commit comments