88msgstr ""
99"Project-Id-Version : Python 3.6\n "
1010"Report-Msgid-Bugs-To : \n "
11- "POT-Creation-Date : 2018-01-05 15:01+0000 \n "
11+ "POT-Creation-Date : 2018-05-30 13:28+0900 \n "
1212"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
1313"Last-Translator : SHIMIZU Taku <shimizu.taku@gmail.com>, 2018\n "
1414"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -717,52 +717,58 @@ msgstr ""
717717" *されません*。 (This is to prevent the cancellation of one child to cause other "
718718"children to be cancelled.)"
719719
720- #: ../../library/asyncio-task.rst:573
720+ #: ../../library/asyncio-task.rst:571
721+ msgid ""
722+ "If the *gather* itself is cancelled, the cancellation is propagated "
723+ "regardless of *return_exceptions*."
724+ msgstr ""
725+
726+ #: ../../library/asyncio-task.rst:577
721727msgid ""
722728"Return ``True`` if *obj* is a :ref:`coroutine object <coroutine>`, which may"
723729" be based on a generator or an :keyword:`async def` coroutine."
724730msgstr ""
725731
726- #: ../../library/asyncio-task.rst:578
732+ #: ../../library/asyncio-task.rst:582
727733msgid ""
728734"Return ``True`` if *func* is determined to be a :ref:`coroutine function "
729735"<coroutine>`, which may be a decorated generator function or an "
730736":keyword:`async def` function."
731737msgstr ""
732738
733- #: ../../library/asyncio-task.rst:584
739+ #: ../../library/asyncio-task.rst:588
734740msgid "Submit a :ref:`coroutine object <coroutine>` to a given event loop."
735741msgstr ""
736742
737- #: ../../library/asyncio-task.rst:586
743+ #: ../../library/asyncio-task.rst:590
738744msgid "Return a :class:`concurrent.futures.Future` to access the result."
739745msgstr ""
740746
741- #: ../../library/asyncio-task.rst:588
747+ #: ../../library/asyncio-task.rst:592
742748msgid ""
743749"This function is meant to be called from a different thread than the one "
744750"where the event loop is running. Usage::"
745751msgstr ""
746752
747- #: ../../library/asyncio-task.rst:598
753+ #: ../../library/asyncio-task.rst:602
748754msgid ""
749755"If an exception is raised in the coroutine, the returned future will be "
750756"notified. It can also be used to cancel the task in the event loop::"
751757msgstr ""
752758
753- #: ../../library/asyncio-task.rst:611
759+ #: ../../library/asyncio-task.rst:615
754760msgid ""
755761"See the :ref:`concurrency and multithreading <asyncio-multithreading>` "
756762"section of the documentation."
757763msgstr "このドキュメントの :ref:`asyncio-multithreading` 節を参照してください。"
758764
759- #: ../../library/asyncio-task.rst:616
765+ #: ../../library/asyncio-task.rst:620
760766msgid ""
761767"Unlike other functions from the module, :func:`run_coroutine_threadsafe` "
762768"requires the *loop* argument to be passed explicitly."
763769msgstr ""
764770
765- #: ../../library/asyncio-task.rst:624
771+ #: ../../library/asyncio-task.rst:628
766772msgid ""
767773"Create a :ref:`coroutine <coroutine>` that completes after a given time (in "
768774"seconds). If *result* is provided, it is produced to the caller when the "
@@ -771,29 +777,29 @@ msgstr ""
771777"与えられた時間 (秒) 後に完了する :ref:`コルーチン <coroutine>` を作成します。*result* "
772778"が与えられた場合、コルーチン完了時にそれが呼び出し元に返されます。"
773779
774- #: ../../library/asyncio-task.rst:628
780+ #: ../../library/asyncio-task.rst:632
775781msgid ""
776782"The resolution of the sleep depends on the :ref:`granularity of the event "
777783"loop <asyncio-delayed-calls>`."
778784msgstr "スリープの分解能は :ref:`イベントループの粒度 <asyncio-delayed-calls>` に依存します。"
779785
780- #: ../../library/asyncio-task.rst:631 ../../library/asyncio-task.rst:695
786+ #: ../../library/asyncio-task.rst:635 ../../library/asyncio-task.rst:699
781787msgid "This function is a :ref:`coroutine <coroutine>`."
782788msgstr "この関数は :ref:`コルーチン <coroutine>` です。"
783789
784- #: ../../library/asyncio-task.rst:635
790+ #: ../../library/asyncio-task.rst:639
785791msgid "Wait for a future, shielding it from cancellation."
786792msgstr "フューチャを待機しキャンセル処理から保護します。"
787793
788- #: ../../library/asyncio-task.rst:637
794+ #: ../../library/asyncio-task.rst:641
789795msgid "The statement::"
790796msgstr "命令文::"
791797
792- #: ../../library/asyncio-task.rst:641
798+ #: ../../library/asyncio-task.rst:645
793799msgid "is exactly equivalent to the statement::"
794800msgstr "上の文は以下と完全に等価です::"
795801
796- #: ../../library/asyncio-task.rst:645
802+ #: ../../library/asyncio-task.rst:649
797803msgid ""
798804"*except* that if the coroutine containing it is cancelled, the task running "
799805"in ``something()`` is not cancelled. From the point of view of "
@@ -808,15 +814,15 @@ msgstr ""
808814":exc:`~concurrent.futures.CancelledError` を送出します。注意: ``something()`` "
809815"が他の理由でキャンセルされた場合は ``shield()`` でも保護できません。"
810816
811- #: ../../library/asyncio-task.rst:652
817+ #: ../../library/asyncio-task.rst:656
812818msgid ""
813819"If you want to completely ignore cancellation (not recommended) you can "
814820"combine ``shield()`` with a try/except clause, as follows::"
815821msgstr ""
816822"完全にキャンセル処理を無視させたい場合 (推奨はしません) は、以下のように ``shield()`` と try/except "
817823"節の組み合わせで行うことができます::"
818824
819- #: ../../library/asyncio-task.rst:664
825+ #: ../../library/asyncio-task.rst:668
820826msgid ""
821827"Wait for the Futures and coroutine objects given by the sequence *futures* "
822828"to complete. Coroutines will be wrapped in Tasks. Returns two sets of "
@@ -825,11 +831,11 @@ msgstr ""
825831"シーケンス *futures* で与えられたフューチャおよびコルーチンオブジェクトが完了するまで待機します。コルーチンはタスクでラップされます。戻り値は"
826832" (完了した :class:`Future`, 未完の :class:`Future`) の 2 個の集合になります。"
827833
828- #: ../../library/asyncio-task.rst:668
834+ #: ../../library/asyncio-task.rst:672
829835msgid "The sequence *futures* must not be empty."
830836msgstr "シーケンス *futures* は空であってはなりません。"
831837
832- #: ../../library/asyncio-task.rst:670
838+ #: ../../library/asyncio-task.rst:674
833839msgid ""
834840"*timeout* can be used to control the maximum number of seconds to wait "
835841"before returning. *timeout* can be an int or float. If *timeout* is not "
@@ -838,35 +844,35 @@ msgstr ""
838844"*timeout* で結果を返すまで待機する最大秒数を指定できます。*timeout* は整数か浮動小数点数をとります。*timeout* "
839845"が指定されないか ``None`` の場合、無期限に待機します。"
840846
841- #: ../../library/asyncio-task.rst:674
847+ #: ../../library/asyncio-task.rst:678
842848msgid ""
843849"*return_when* indicates when this function should return. It must be one of"
844850" the following constants of the :mod:`concurrent.futures` module:"
845851msgstr ""
846852"*return_when* でこの関数がいつ結果を返すか指定します。指定できる値は以下の :mod:`concurrent.futures` "
847853"モジュール定数のどれか一つです:"
848854
849- #: ../../library/asyncio-task.rst:680
855+ #: ../../library/asyncio-task.rst:684
850856msgid "Constant"
851857msgstr "定数"
852858
853- #: ../../library/asyncio-task.rst:680
859+ #: ../../library/asyncio-task.rst:684
854860msgid "Description"
855861msgstr "説明"
856862
857- #: ../../library/asyncio-task.rst:682
863+ #: ../../library/asyncio-task.rst:686
858864msgid ":const:`FIRST_COMPLETED`"
859865msgstr ":const:`FIRST_COMPLETED`"
860866
861- #: ../../library/asyncio-task.rst:682
867+ #: ../../library/asyncio-task.rst:686
862868msgid "The function will return when any future finishes or is cancelled."
863869msgstr "いずれかのフューチャが終了したかキャンセルされたときに返します。"
864870
865- #: ../../library/asyncio-task.rst:685
871+ #: ../../library/asyncio-task.rst:689
866872msgid ":const:`FIRST_EXCEPTION`"
867873msgstr ":const:`FIRST_EXCEPTION`"
868874
869- #: ../../library/asyncio-task.rst:685
875+ #: ../../library/asyncio-task.rst:689
870876msgid ""
871877"The function will return when any future finishes by raising an exception. "
872878"If no future raises an exception then it is equivalent to "
@@ -875,27 +881,27 @@ msgstr ""
875881"いずれかのフューチャが例外の送出で終了した場合に返します。例外を送出したフューチャがない場合は、:const:`ALL_COMPLETED` "
876882"と等価になります。"
877883
878- #: ../../library/asyncio-task.rst:691
884+ #: ../../library/asyncio-task.rst:695
879885msgid ":const:`ALL_COMPLETED`"
880886msgstr ":const:`ALL_COMPLETED`"
881887
882- #: ../../library/asyncio-task.rst:691
888+ #: ../../library/asyncio-task.rst:695
883889msgid "The function will return when all futures finish or are cancelled."
884890msgstr "すべてのフューチャが終了したかキャンセルされたときに返します。"
885891
886- #: ../../library/asyncio-task.rst:697
892+ #: ../../library/asyncio-task.rst:701
887893msgid "Usage::"
888894msgstr "使い方::"
889895
890- #: ../../library/asyncio-task.rst:703
896+ #: ../../library/asyncio-task.rst:707
891897msgid ""
892898"This does not raise :exc:`asyncio.TimeoutError`! Futures that aren't done "
893899"when the timeout occurs are returned in the second set."
894900msgstr ""
895901"これは :exc:`asyncio.TimeoutError` "
896902"を送出しません。タイムアウトが発生して完了しなかったフューチャは戻り値の後者の集合に含まれます。"
897903
898- #: ../../library/asyncio-task.rst:709
904+ #: ../../library/asyncio-task.rst:713
899905msgid ""
900906"Wait for the single :class:`Future` or :ref:`coroutine object <coroutine>` "
901907"to complete with timeout. If *timeout* is ``None``, block until the future "
@@ -904,11 +910,11 @@ msgstr ""
904910"単一の :class:`Future` または :ref:`コルーチンオブジェクト <coroutine>` を期限付きで待機します。*timeout*"
905911" が ``None`` の場合、フューチャが完了するまでブロックします。"
906912
907- #: ../../library/asyncio-task.rst:713
913+ #: ../../library/asyncio-task.rst:717
908914msgid "Coroutine will be wrapped in :class:`Task`."
909915msgstr "コルーチンは :class:`Task` でラップされます。"
910916
911- #: ../../library/asyncio-task.rst:715
917+ #: ../../library/asyncio-task.rst:719
912918msgid ""
913919"Returns result of the Future or coroutine. When a timeout occurs, it "
914920"cancels the task and raises :exc:`asyncio.TimeoutError`. To avoid the task "
@@ -917,14 +923,14 @@ msgstr ""
917923"フューチャあるいはコルーチンの結果を返します。タイムアウトが発生した場合、タスクをキャンセルし :exc:`asyncio.TimeoutError` "
918924"を送出します。タスクのキャンセルを抑止したい場合は :func:`shield` でラップしてください。"
919925
920- #: ../../library/asyncio-task.rst:719
926+ #: ../../library/asyncio-task.rst:723
921927msgid "If the wait is cancelled, the future *fut* is also cancelled."
922928msgstr "待機が中止された場合 *fut* も中止されます。"
923929
924- #: ../../library/asyncio-task.rst:721
930+ #: ../../library/asyncio-task.rst:725
925931msgid "This function is a :ref:`coroutine <coroutine>`, usage::"
926932msgstr "この関数は :ref:`コルーチン <coroutine>` です。使用法::"
927933
928- #: ../../library/asyncio-task.rst:725
934+ #: ../../library/asyncio-task.rst:729
929935msgid "If the wait is cancelled, the future *fut* is now also cancelled."
930936msgstr "待機が中止された場合 *fut* も中止されます。"
0 commit comments