@@ -105,7 +105,7 @@ msgstr "start, start+step, start+2*step, ..."
105105
106106#: ../../library/itertools.rst:44
107107msgid "``count(10) → 10 11 12 13 14 ...``"
108- msgstr ""
108+ msgstr "``count(10) → 10 11 12 13 14 ...`` "
109109
110110#: ../../library/itertools.rst:45
111111msgid ":func:`cycle`"
@@ -121,7 +121,7 @@ msgstr "p0, p1, ... plast, p0, p1, ..."
121121
122122#: ../../library/itertools.rst:45
123123msgid "``cycle('ABCD') → A B C D A B C D ...``"
124- msgstr ""
124+ msgstr "``cycle('ABCD') → A B C D A B C D ...`` "
125125
126126#: ../../library/itertools.rst:46
127127msgid ":func:`repeat`"
@@ -137,7 +137,7 @@ msgstr "elem, elem, elem, ... 重复无限次或n次"
137137
138138#: ../../library/itertools.rst:46
139139msgid "``repeat(10, 3) → 10 10 10``"
140- msgstr ""
140+ msgstr "``repeat(10, 3) → 10 10 10`` "
141141
142142#: ../../library/itertools.rst:49
143143msgid "**Iterators terminating on the shortest input sequence:**"
@@ -157,7 +157,7 @@ msgstr "p0, p0+p1, p0+p1+p2, ..."
157157
158158#: ../../library/itertools.rst:54
159159msgid "``accumulate([1,2,3,4,5]) → 1 3 6 10 15``"
160- msgstr ""
160+ msgstr "``accumulate([1,2,3,4,5]) → 1 3 6 10 15`` "
161161
162162#: ../../library/itertools.rst:55
163163msgid ":func:`batched`"
@@ -173,7 +173,7 @@ msgstr "(p0, p1, ..., p_n-1), ..."
173173
174174#: ../../library/itertools.rst:55
175175msgid "``batched('ABCDEFG', n=3) → ABC DEF G``"
176- msgstr ""
176+ msgstr "``batched('ABCDEFG', n=3) → ABC DEF G`` "
177177
178178#: ../../library/itertools.rst:56
179179msgid ":func:`chain`"
@@ -189,7 +189,7 @@ msgstr "p0, p1, ... plast, q0, q1, ..."
189189
190190#: ../../library/itertools.rst:56
191191msgid "``chain('ABC', 'DEF') → A B C D E F``"
192- msgstr ""
192+ msgstr "``chain('ABC', 'DEF') → A B C D E F`` "
193193
194194#: ../../library/itertools.rst:57
195195msgid ":func:`chain.from_iterable`"
@@ -201,7 +201,7 @@ msgstr "iterable -- 可迭代对象"
201201
202202#: ../../library/itertools.rst:57
203203msgid "``chain.from_iterable(['ABC', 'DEF']) → A B C D E F``"
204- msgstr ""
204+ msgstr "``chain.from_iterable(['ABC', 'DEF']) → A B C D E F`` "
205205
206206#: ../../library/itertools.rst:58
207207msgid ":func:`compress`"
@@ -217,7 +217,7 @@ msgstr "(d[0] if s[0]), (d[1] if s[1]), ..."
217217
218218#: ../../library/itertools.rst:58
219219msgid "``compress('ABCDEF', [1,0,1,0,1,1]) → A C E F``"
220- msgstr ""
220+ msgstr "``compress('ABCDEF', [1,0,1,0,1,1]) → A C E F`` "
221221
222222#: ../../library/itertools.rst:59
223223msgid ":func:`dropwhile`"
@@ -234,7 +234,7 @@ msgstr "seq[n], seq[n+1], 从 predicate 未通过时开始"
234234
235235#: ../../library/itertools.rst:59
236236msgid "``dropwhile(lambda x: x<5, [1,4,6,4,1]) → 6 4 1``"
237- msgstr ""
237+ msgstr "``dropwhile(lambda x: x<5, [1,4,6,4,1]) → 6 4 1`` "
238238
239239#: ../../library/itertools.rst:60
240240msgid ":func:`filterfalse`"
@@ -246,7 +246,7 @@ msgstr "predicate(elem) 未通过的 seq 元素"
246246
247247#: ../../library/itertools.rst:60
248248msgid "``filterfalse(lambda x: x%2, range(10)) → 0 2 4 6 8``"
249- msgstr ""
249+ msgstr "``filterfalse(lambda x: x%2, range(10)) → 0 2 4 6 8`` "
250250
251251#: ../../library/itertools.rst:61
252252msgid ":func:`groupby`"
@@ -274,7 +274,7 @@ msgstr "seq[start:stop:step]中的元素"
274274
275275#: ../../library/itertools.rst:62
276276msgid "``islice('ABCDEFG', 2, None) → C D E F G``"
277- msgstr ""
277+ msgstr "``islice('ABCDEFG', 2, None) → C D E F G`` "
278278
279279#: ../../library/itertools.rst:63
280280msgid ":func:`pairwise`"
@@ -286,7 +286,7 @@ msgstr "(p[0], p[1]), (p[1], p[2])"
286286
287287#: ../../library/itertools.rst:63
288288msgid "``pairwise('ABCDEFG') → AB BC CD DE EF FG``"
289- msgstr ""
289+ msgstr "``pairwise('ABCDEFG') → AB BC CD DE EF FG`` "
290290
291291#: ../../library/itertools.rst:64
292292msgid ":func:`starmap`"
@@ -302,7 +302,7 @@ msgstr "func(\\*seq[0]), func(\\*seq[1]), ..."
302302
303303#: ../../library/itertools.rst:64
304304msgid "``starmap(pow, [(2,5), (3,2), (10,3)]) → 32 9 1000``"
305- msgstr ""
305+ msgstr "``starmap(pow, [(2,5), (3,2), (10,3)]) → 32 9 1000`` "
306306
307307#: ../../library/itertools.rst:65
308308msgid ":func:`takewhile`"
@@ -314,7 +314,7 @@ msgstr "seq[0], seq[1], 直到 predicate 未通过"
314314
315315#: ../../library/itertools.rst:65
316316msgid "``takewhile(lambda x: x<5, [1,4,6,4,1]) → 1 4``"
317- msgstr ""
317+ msgstr "``takewhile(lambda x: x<5, [1,4,6,4,1]) → 1 4`` "
318318
319319#: ../../library/itertools.rst:66
320320msgid ":func:`tee`"
@@ -338,7 +338,7 @@ msgstr "(p[0], q[0]), (p[1], q[1]), ..."
338338
339339#: ../../library/itertools.rst:67
340340msgid "``zip_longest('ABCD', 'xy', fillvalue='-') → Ax By C- D-``"
341- msgstr ""
341+ msgstr "``zip_longest('ABCD', 'xy', fillvalue='-') → Ax By C- D-`` "
342342
343343#: ../../library/itertools.rst:70
344344msgid "**Combinatoric iterators:**"
0 commit comments