8
8
msgstr ""
9
9
"Project-Id-Version : Python 3.6\n "
10
10
"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 "
12
12
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
13
13
"Last-Translator : SHIMIZU Taku <shimizu.taku@gmail.com>, 2018\n "
14
14
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -717,52 +717,58 @@ msgstr ""
717
717
" *されません*。 (This is to prevent the cancellation of one child to cause other "
718
718
"children to be cancelled.)"
719
719
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
721
727
msgid ""
722
728
"Return ``True`` if *obj* is a :ref:`coroutine object <coroutine>`, which may"
723
729
" be based on a generator or an :keyword:`async def` coroutine."
724
730
msgstr ""
725
731
726
- #: ../../library/asyncio-task.rst:578
732
+ #: ../../library/asyncio-task.rst:582
727
733
msgid ""
728
734
"Return ``True`` if *func* is determined to be a :ref:`coroutine function "
729
735
"<coroutine>`, which may be a decorated generator function or an "
730
736
":keyword:`async def` function."
731
737
msgstr ""
732
738
733
- #: ../../library/asyncio-task.rst:584
739
+ #: ../../library/asyncio-task.rst:588
734
740
msgid "Submit a :ref:`coroutine object <coroutine>` to a given event loop."
735
741
msgstr ""
736
742
737
- #: ../../library/asyncio-task.rst:586
743
+ #: ../../library/asyncio-task.rst:590
738
744
msgid "Return a :class:`concurrent.futures.Future` to access the result."
739
745
msgstr ""
740
746
741
- #: ../../library/asyncio-task.rst:588
747
+ #: ../../library/asyncio-task.rst:592
742
748
msgid ""
743
749
"This function is meant to be called from a different thread than the one "
744
750
"where the event loop is running. Usage::"
745
751
msgstr ""
746
752
747
- #: ../../library/asyncio-task.rst:598
753
+ #: ../../library/asyncio-task.rst:602
748
754
msgid ""
749
755
"If an exception is raised in the coroutine, the returned future will be "
750
756
"notified. It can also be used to cancel the task in the event loop::"
751
757
msgstr ""
752
758
753
- #: ../../library/asyncio-task.rst:611
759
+ #: ../../library/asyncio-task.rst:615
754
760
msgid ""
755
761
"See the :ref:`concurrency and multithreading <asyncio-multithreading>` "
756
762
"section of the documentation."
757
763
msgstr "このドキュメントの :ref:`asyncio-multithreading` 節を参照してください。"
758
764
759
- #: ../../library/asyncio-task.rst:616
765
+ #: ../../library/asyncio-task.rst:620
760
766
msgid ""
761
767
"Unlike other functions from the module, :func:`run_coroutine_threadsafe` "
762
768
"requires the *loop* argument to be passed explicitly."
763
769
msgstr ""
764
770
765
- #: ../../library/asyncio-task.rst:624
771
+ #: ../../library/asyncio-task.rst:628
766
772
msgid ""
767
773
"Create a :ref:`coroutine <coroutine>` that completes after a given time (in "
768
774
"seconds). If *result* is provided, it is produced to the caller when the "
@@ -771,29 +777,29 @@ msgstr ""
771
777
"与えられた時間 (秒) 後に完了する :ref:`コルーチン <coroutine>` を作成します。*result* "
772
778
"が与えられた場合、コルーチン完了時にそれが呼び出し元に返されます。"
773
779
774
- #: ../../library/asyncio-task.rst:628
780
+ #: ../../library/asyncio-task.rst:632
775
781
msgid ""
776
782
"The resolution of the sleep depends on the :ref:`granularity of the event "
777
783
"loop <asyncio-delayed-calls>`."
778
784
msgstr "スリープの分解能は :ref:`イベントループの粒度 <asyncio-delayed-calls>` に依存します。"
779
785
780
- #: ../../library/asyncio-task.rst:631 ../../library/asyncio-task.rst:695
786
+ #: ../../library/asyncio-task.rst:635 ../../library/asyncio-task.rst:699
781
787
msgid "This function is a :ref:`coroutine <coroutine>`."
782
788
msgstr "この関数は :ref:`コルーチン <coroutine>` です。"
783
789
784
- #: ../../library/asyncio-task.rst:635
790
+ #: ../../library/asyncio-task.rst:639
785
791
msgid "Wait for a future, shielding it from cancellation."
786
792
msgstr "フューチャを待機しキャンセル処理から保護します。"
787
793
788
- #: ../../library/asyncio-task.rst:637
794
+ #: ../../library/asyncio-task.rst:641
789
795
msgid "The statement::"
790
796
msgstr "命令文::"
791
797
792
- #: ../../library/asyncio-task.rst:641
798
+ #: ../../library/asyncio-task.rst:645
793
799
msgid "is exactly equivalent to the statement::"
794
800
msgstr "上の文は以下と完全に等価です::"
795
801
796
- #: ../../library/asyncio-task.rst:645
802
+ #: ../../library/asyncio-task.rst:649
797
803
msgid ""
798
804
"*except* that if the coroutine containing it is cancelled, the task running "
799
805
"in ``something()`` is not cancelled. From the point of view of "
@@ -808,15 +814,15 @@ msgstr ""
808
814
":exc:`~concurrent.futures.CancelledError` を送出します。注意: ``something()`` "
809
815
"が他の理由でキャンセルされた場合は ``shield()`` でも保護できません。"
810
816
811
- #: ../../library/asyncio-task.rst:652
817
+ #: ../../library/asyncio-task.rst:656
812
818
msgid ""
813
819
"If you want to completely ignore cancellation (not recommended) you can "
814
820
"combine ``shield()`` with a try/except clause, as follows::"
815
821
msgstr ""
816
822
"完全にキャンセル処理を無視させたい場合 (推奨はしません) は、以下のように ``shield()`` と try/except "
817
823
"節の組み合わせで行うことができます::"
818
824
819
- #: ../../library/asyncio-task.rst:664
825
+ #: ../../library/asyncio-task.rst:668
820
826
msgid ""
821
827
"Wait for the Futures and coroutine objects given by the sequence *futures* "
822
828
"to complete. Coroutines will be wrapped in Tasks. Returns two sets of "
@@ -825,11 +831,11 @@ msgstr ""
825
831
"シーケンス *futures* で与えられたフューチャおよびコルーチンオブジェクトが完了するまで待機します。コルーチンはタスクでラップされます。戻り値は"
826
832
" (完了した :class:`Future`, 未完の :class:`Future`) の 2 個の集合になります。"
827
833
828
- #: ../../library/asyncio-task.rst:668
834
+ #: ../../library/asyncio-task.rst:672
829
835
msgid "The sequence *futures* must not be empty."
830
836
msgstr "シーケンス *futures* は空であってはなりません。"
831
837
832
- #: ../../library/asyncio-task.rst:670
838
+ #: ../../library/asyncio-task.rst:674
833
839
msgid ""
834
840
"*timeout* can be used to control the maximum number of seconds to wait "
835
841
"before returning. *timeout* can be an int or float. If *timeout* is not "
@@ -838,35 +844,35 @@ msgstr ""
838
844
"*timeout* で結果を返すまで待機する最大秒数を指定できます。*timeout* は整数か浮動小数点数をとります。*timeout* "
839
845
"が指定されないか ``None`` の場合、無期限に待機します。"
840
846
841
- #: ../../library/asyncio-task.rst:674
847
+ #: ../../library/asyncio-task.rst:678
842
848
msgid ""
843
849
"*return_when* indicates when this function should return. It must be one of"
844
850
" the following constants of the :mod:`concurrent.futures` module:"
845
851
msgstr ""
846
852
"*return_when* でこの関数がいつ結果を返すか指定します。指定できる値は以下の :mod:`concurrent.futures` "
847
853
"モジュール定数のどれか一つです:"
848
854
849
- #: ../../library/asyncio-task.rst:680
855
+ #: ../../library/asyncio-task.rst:684
850
856
msgid "Constant"
851
857
msgstr "定数"
852
858
853
- #: ../../library/asyncio-task.rst:680
859
+ #: ../../library/asyncio-task.rst:684
854
860
msgid "Description"
855
861
msgstr "説明"
856
862
857
- #: ../../library/asyncio-task.rst:682
863
+ #: ../../library/asyncio-task.rst:686
858
864
msgid ":const:`FIRST_COMPLETED`"
859
865
msgstr ":const:`FIRST_COMPLETED`"
860
866
861
- #: ../../library/asyncio-task.rst:682
867
+ #: ../../library/asyncio-task.rst:686
862
868
msgid "The function will return when any future finishes or is cancelled."
863
869
msgstr "いずれかのフューチャが終了したかキャンセルされたときに返します。"
864
870
865
- #: ../../library/asyncio-task.rst:685
871
+ #: ../../library/asyncio-task.rst:689
866
872
msgid ":const:`FIRST_EXCEPTION`"
867
873
msgstr ":const:`FIRST_EXCEPTION`"
868
874
869
- #: ../../library/asyncio-task.rst:685
875
+ #: ../../library/asyncio-task.rst:689
870
876
msgid ""
871
877
"The function will return when any future finishes by raising an exception. "
872
878
"If no future raises an exception then it is equivalent to "
@@ -875,27 +881,27 @@ msgstr ""
875
881
"いずれかのフューチャが例外の送出で終了した場合に返します。例外を送出したフューチャがない場合は、:const:`ALL_COMPLETED` "
876
882
"と等価になります。"
877
883
878
- #: ../../library/asyncio-task.rst:691
884
+ #: ../../library/asyncio-task.rst:695
879
885
msgid ":const:`ALL_COMPLETED`"
880
886
msgstr ":const:`ALL_COMPLETED`"
881
887
882
- #: ../../library/asyncio-task.rst:691
888
+ #: ../../library/asyncio-task.rst:695
883
889
msgid "The function will return when all futures finish or are cancelled."
884
890
msgstr "すべてのフューチャが終了したかキャンセルされたときに返します。"
885
891
886
- #: ../../library/asyncio-task.rst:697
892
+ #: ../../library/asyncio-task.rst:701
887
893
msgid "Usage::"
888
894
msgstr "使い方::"
889
895
890
- #: ../../library/asyncio-task.rst:703
896
+ #: ../../library/asyncio-task.rst:707
891
897
msgid ""
892
898
"This does not raise :exc:`asyncio.TimeoutError`! Futures that aren't done "
893
899
"when the timeout occurs are returned in the second set."
894
900
msgstr ""
895
901
"これは :exc:`asyncio.TimeoutError` "
896
902
"を送出しません。タイムアウトが発生して完了しなかったフューチャは戻り値の後者の集合に含まれます。"
897
903
898
- #: ../../library/asyncio-task.rst:709
904
+ #: ../../library/asyncio-task.rst:713
899
905
msgid ""
900
906
"Wait for the single :class:`Future` or :ref:`coroutine object <coroutine>` "
901
907
"to complete with timeout. If *timeout* is ``None``, block until the future "
@@ -904,11 +910,11 @@ msgstr ""
904
910
"単一の :class:`Future` または :ref:`コルーチンオブジェクト <coroutine>` を期限付きで待機します。*timeout*"
905
911
" が ``None`` の場合、フューチャが完了するまでブロックします。"
906
912
907
- #: ../../library/asyncio-task.rst:713
913
+ #: ../../library/asyncio-task.rst:717
908
914
msgid "Coroutine will be wrapped in :class:`Task`."
909
915
msgstr "コルーチンは :class:`Task` でラップされます。"
910
916
911
- #: ../../library/asyncio-task.rst:715
917
+ #: ../../library/asyncio-task.rst:719
912
918
msgid ""
913
919
"Returns result of the Future or coroutine. When a timeout occurs, it "
914
920
"cancels the task and raises :exc:`asyncio.TimeoutError`. To avoid the task "
@@ -917,14 +923,14 @@ msgstr ""
917
923
"フューチャあるいはコルーチンの結果を返します。タイムアウトが発生した場合、タスクをキャンセルし :exc:`asyncio.TimeoutError` "
918
924
"を送出します。タスクのキャンセルを抑止したい場合は :func:`shield` でラップしてください。"
919
925
920
- #: ../../library/asyncio-task.rst:719
926
+ #: ../../library/asyncio-task.rst:723
921
927
msgid "If the wait is cancelled, the future *fut* is also cancelled."
922
928
msgstr "待機が中止された場合 *fut* も中止されます。"
923
929
924
- #: ../../library/asyncio-task.rst:721
930
+ #: ../../library/asyncio-task.rst:725
925
931
msgid "This function is a :ref:`coroutine <coroutine>`, usage::"
926
932
msgstr "この関数は :ref:`コルーチン <coroutine>` です。使用法::"
927
933
928
- #: ../../library/asyncio-task.rst:725
934
+ #: ../../library/asyncio-task.rst:729
929
935
msgid "If the wait is cancelled, the future *fut* is now also cancelled."
930
936
msgstr "待機が中止された場合 *fut* も中止されます。"
0 commit comments