7
7
msgstr ""
8
8
"Project-Id-Version : Python 3.12\n "
9
9
"Report-Msgid-Bugs-To : \n "
10
- "POT-Creation-Date : 2024-05-15 00:04 +0000\n "
10
+ "POT-Creation-Date : 2024-05-19 00:03 +0000\n "
11
11
"PO-Revision-Date : 2018-05-23 16:04+0000\n "
12
12
"Last-Translator : Adrian Liaw <adrianliaw2000@gmail.com>\n "
13
13
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -805,55 +805,55 @@ msgstr ""
805
805
msgid "Return *n* independent iterators from a single iterable."
806
806
msgstr ""
807
807
808
- #: ../../library/itertools.rst:706
808
+ #: ../../library/itertools.rst:707
809
809
msgid ""
810
810
"Once a :func:`tee` has been created, the original *iterable* should not be "
811
811
"used anywhere else; otherwise, the *iterable* could get advanced without the "
812
812
"tee objects being informed."
813
813
msgstr ""
814
814
815
- #: ../../library/itertools.rst:710
815
+ #: ../../library/itertools.rst:711
816
816
msgid ""
817
817
"``tee`` iterators are not threadsafe. A :exc:`RuntimeError` may be raised "
818
818
"when simultaneously using iterators returned by the same :func:`tee` call, "
819
819
"even if the original *iterable* is threadsafe."
820
820
msgstr ""
821
821
822
- #: ../../library/itertools.rst:714
822
+ #: ../../library/itertools.rst:715
823
823
msgid ""
824
824
"This itertool may require significant auxiliary storage (depending on how "
825
825
"much temporary data needs to be stored). In general, if one iterator uses "
826
826
"most or all of the data before another iterator starts, it is faster to use :"
827
827
"func:`list` instead of :func:`tee`."
828
828
msgstr ""
829
829
830
- #: ../../library/itertools.rst:722
830
+ #: ../../library/itertools.rst:723
831
831
msgid ""
832
832
"Make an iterator that aggregates elements from each of the iterables. If the "
833
833
"iterables are of uneven length, missing values are filled-in with "
834
834
"*fillvalue*. Iteration continues until the longest iterable is exhausted. "
835
835
"Roughly equivalent to::"
836
836
msgstr ""
837
837
838
- #: ../../library/itertools.rst:746
838
+ #: ../../library/itertools.rst:747
839
839
msgid ""
840
840
"If one of the iterables is potentially infinite, then the :func:"
841
841
"`zip_longest` function should be wrapped with something that limits the "
842
842
"number of calls (for example :func:`islice` or :func:`takewhile`). If not "
843
843
"specified, *fillvalue* defaults to ``None``."
844
844
msgstr ""
845
845
846
- #: ../../library/itertools.rst:755
846
+ #: ../../library/itertools.rst:756
847
847
msgid "Itertools Recipes"
848
848
msgstr ""
849
849
850
- #: ../../library/itertools.rst:757
850
+ #: ../../library/itertools.rst:758
851
851
msgid ""
852
852
"This section shows recipes for creating an extended toolset using the "
853
853
"existing itertools as building blocks."
854
854
msgstr ""
855
855
856
- #: ../../library/itertools.rst:760
856
+ #: ../../library/itertools.rst:761
857
857
msgid ""
858
858
"The primary purpose of the itertools recipes is educational. The recipes "
859
859
"show various ways of thinking about individual tools — for example, that "
@@ -865,21 +865,21 @@ msgid ""
865
865
"``map()``, ``filter()``, ``reversed()``, and ``enumerate()``."
866
866
msgstr ""
867
867
868
- #: ../../library/itertools.rst:769
868
+ #: ../../library/itertools.rst:770
869
869
msgid ""
870
870
"A secondary purpose of the recipes is to serve as an incubator. The "
871
871
"``accumulate()``, ``compress()``, and ``pairwise()`` itertools started out "
872
872
"as recipes. Currently, the ``sliding_window()``, ``iter_index()``, and "
873
873
"``sieve()`` recipes are being tested to see whether they prove their worth."
874
874
msgstr ""
875
875
876
- #: ../../library/itertools.rst:774
876
+ #: ../../library/itertools.rst:775
877
877
msgid ""
878
878
"Substantially all of these recipes and many, many others can be installed "
879
879
"from the :pypi:`more-itertools` project found on the Python Package Index::"
880
880
msgstr ""
881
881
882
- #: ../../library/itertools.rst:780
882
+ #: ../../library/itertools.rst:781
883
883
msgid ""
884
884
"Many of the recipes offer the same high performance as the underlying "
885
885
"toolset. Superior memory performance is kept by processing elements one at a "
@@ -891,6 +891,6 @@ msgid ""
891
891
"overhead."
892
892
msgstr ""
893
893
894
- #: ../../library/itertools.rst:956
894
+ #: ../../library/itertools.rst:957
895
895
msgid "The following recipes have a more mathematical flavor:"
896
896
msgstr ""
0 commit comments