@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.14\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2026-06-02 01:05 +0000\n "
14+ "POT-Creation-Date : 2026-06-21 16:40 +0000\n "
1515"PO-Revision-Date : 2026-05-08 17:17+0000\n "
1616"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -159,16 +159,21 @@ msgid "asynchronous generator"
159159msgstr ""
160160
161161msgid ""
162- "A function which returns an :term:`asynchronous generator iterator`. It "
163- "looks like a coroutine function defined with :keyword:`async def` except "
164- "that it contains :keyword:`yield` expressions for producing a series of "
165- "values usable in an :keyword:`async for` loop."
162+ "Informally used to mean either an :term:`asynchronous generator function` or "
163+ "an :term:`asynchronous generator iterator`, depending on context. The "
164+ "formal terms :term:`asynchronous generator function` and :term:`asynchronous "
165+ "generator iterator` are uncommon in practice; \" asynchronous generator\" "
166+ "alone is almost always sufficient."
167+ msgstr ""
168+
169+ msgid "asynchronous generator function"
166170msgstr ""
167171
168172msgid ""
169- "Usually refers to an asynchronous generator function, but may refer to an "
170- "*asynchronous generator iterator* in some contexts. In cases where the "
171- "intended meaning isn't clear, using the full terms avoids ambiguity."
173+ "A function which returns an :term:`asynchronous generator iterator`. It "
174+ "looks like a coroutine function defined with :keyword:`async def` except "
175+ "that it contains :keyword:`yield` expressions for producing a series of "
176+ "values usable in an :keyword:`async for` loop. See :pep:`525`."
172177msgstr ""
173178
174179msgid ""
@@ -179,7 +184,7 @@ msgstr ""
179184msgid "asynchronous generator iterator"
180185msgstr ""
181186
182- msgid "An object created by an :term:`asynchronous generator` function."
187+ msgid "An object created by an :term:`asynchronous generator function` ."
183188msgstr ""
184189
185190msgid ""
@@ -990,29 +995,42 @@ msgid "generator"
990995msgstr "generator"
991996
992997msgid ""
993- "A function which returns a :term:`generator iterator`. It looks like a "
994- "normal function except that it contains :keyword:`yield` expressions for "
995- "producing a series of values usable in a for-loop or that can be retrieved "
996- "one at a time with the :func:`next` function."
998+ "Informally used to mean either a :term:`generator function` or a :term:"
999+ "`generator iterator`, depending on context. The formal terms :term:"
1000+ "`generator function` and :term:`generator iterator` are uncommon in "
1001+ "practice; \" generator\" alone is almost always sufficient."
1002+ msgstr ""
1003+
1004+ msgid "generator function"
9971005msgstr ""
9981006
9991007msgid ""
1000- "Usually refers to a generator function, but may refer to a *generator "
1001- "iterator* in some contexts. In cases where the intended meaning isn't "
1002- "clear, using the full terms avoids ambiguity."
1008+ "A function which returns a :term:`generator` object. It looks like a normal "
1009+ "function except that it contains :keyword:`yield` expressions for producing "
1010+ "a series of values usable in a :keyword:`for`\\ -loop or that can be "
1011+ "retrieved one at a time with the :func:`next` function. See :ref:`yieldexpr`."
10031012msgstr ""
10041013
10051014msgid "generator iterator"
10061015msgstr ""
10071016
1008- msgid "An object created by a :term:`generator` function."
1017+ msgid ""
1018+ "An object created by a :term:`generator function` or a :term:`generator "
1019+ "expression`."
10091020msgstr ""
10101021
10111022msgid ""
10121023"Each :keyword:`yield` temporarily suspends processing, remembering the "
1013- "execution state (including local variables and pending try-statements). "
1014- "When the *generator iterator* resumes, it picks up where it left off (in "
1015- "contrast to functions which start fresh on every invocation)."
1024+ "execution state (including local variables and pending try-statements). When "
1025+ "the *generator iterator* resumes, it picks up where it left off (in contrast "
1026+ "to functions which start fresh on every invocation)."
1027+ msgstr ""
1028+
1029+ msgid ""
1030+ "Generator iterators also implement the :meth:`~generator.send` method to "
1031+ "send a value into the suspended generator, and the :meth:`~generator.throw` "
1032+ "method to raise an exception at the point where the generator was paused. "
1033+ "See :ref:`generator-methods`."
10161034msgstr ""
10171035
10181036msgid "generator expression"
0 commit comments