@@ -19,7 +19,7 @@ msgid ""
19
19
msgstr ""
20
20
"Project-Id-Version :Python 3.8\n "
21
21
"Report-Msgid-Bugs-To :\n "
22
- "POT-Creation-Date :2019-09-01 14:24 +0000\n "
22
+ "POT-Creation-Date :2019-09-09 11:23 +0000\n "
23
23
"PO-Revision-Date :2017-02-16 23:16+0000\n "
24
24
"Last-Translator :tomo, 2019\n "
25
25
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -828,6 +828,13 @@ msgstr ""
828
828
829
829
#: ../../library/itertools.rst:648
830
830
msgid ""
831
+ "``tee`` iterators are not threadsafe. A :exc:`RuntimeError` may be raised "
832
+ "when using simultaneously iterators returned by the same :func:`tee` call, "
833
+ "even if the original *iterable* is threadsafe."
834
+ msgstr ""
835
+
836
+ #: ../../library/itertools.rst:652
837
+ msgid ""
831
838
"This itertool may require significant auxiliary storage (depending on how "
832
839
"much temporary data needs to be stored). In general, if one iterator uses "
833
840
"most or all of the data before another iterator starts, it is faster to use "
@@ -837,7 +844,7 @@ msgstr ""
837
844
"(使用するメモリ量はiterableの大きさに依存します)。一般には、一つのイテレータが他のイテレータよりも先にほとんどまたは全ての要素を消費するような場合には、"
838
845
" :func:`tee` よりも :func:`list` を使った方が高速です。"
839
846
840
- #: ../../library/itertools.rst:656
847
+ #: ../../library/itertools.rst:660
841
848
msgid ""
842
849
"Make an iterator that aggregates elements from each of the iterables. If the"
843
850
" iterables are of uneven length, missing values are filled-in with "
@@ -847,7 +854,7 @@ msgstr ""
847
854
"各 iterable の要素をまとめるイテレータを作成します。iterable の長さが違う場合、足りない値は *fillvalue* "
848
855
"で埋められます。最も長い itarable が尽きるまでイテレーションします。およそ次と等価です::"
849
856
850
- #: ../../library/itertools.rst:680
857
+ #: ../../library/itertools.rst:684
851
858
msgid ""
852
859
"If one of the iterables is potentially infinite, then the "
853
860
":func:`zip_longest` function should be wrapped with something that limits "
@@ -858,24 +865,24 @@ msgstr ""
858
865
"は呼び出し回数を制限するような何かでラップしなければいけません(例えば :func:`islice` or :func:`takewhile`)。 "
859
866
"*fillvalue* は指定しない場合のデフォルトは ``None`` です。"
860
867
861
- #: ../../library/itertools.rst:689
868
+ #: ../../library/itertools.rst:693
862
869
msgid "Itertools Recipes"
863
870
msgstr "Itertools レシピ"
864
871
865
- #: ../../library/itertools.rst:691
872
+ #: ../../library/itertools.rst:695
866
873
msgid ""
867
874
"This section shows recipes for creating an extended toolset using the "
868
875
"existing itertools as building blocks."
869
876
msgstr "この節では、既存の itertools を素材としてツールセットを拡張するためのレシピを示します。"
870
877
871
- #: ../../library/itertools.rst:694
878
+ #: ../../library/itertools.rst:698
872
879
msgid ""
873
880
"Substantially all of these recipes and many, many others can be installed "
874
881
"from the `more-itertools project <https://pypi.org/project/more-"
875
882
"itertools/>`_ found on the Python Package Index::"
876
883
msgstr ""
877
884
878
- #: ../../library/itertools.rst:700
885
+ #: ../../library/itertools.rst:704
879
886
msgid ""
880
887
"The extended tools offer the same high performance as the underlying "
881
888
"toolset. The superior memory performance is kept by processing elements one "