@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.13\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2025-02-21 14:16 +0000\n "
15+ "POT-Creation-Date : 2025-02-28 14:17 +0000\n "
1616"PO-Revision-Date : 2021-06-28 00:54+0000\n "
1717"Last-Translator : Stan Ulbrych, 2025\n "
1818"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -198,23 +198,23 @@ msgid ""
198198msgstr ""
199199
200200msgid ""
201- "The ABC ``MyIterable`` defines the standard iterable method, :meth:"
202- "`~iterator. __iter__`, as an abstract method. The implementation given here "
203- "can still be called from subclasses. The :meth:`!get_iterator` method is "
204- "also part of the ``MyIterable`` abstract base class, but it does not have to "
205- "be overridden in non-abstract derived classes."
201+ "The ABC ``MyIterable`` defines the standard iterable method, :meth:`~object. "
202+ "__iter__`, as an abstract method. The implementation given here can still "
203+ "be called from subclasses. The :meth:`!get_iterator` method is also part of "
204+ "the ``MyIterable`` abstract base class, but it does not have to be "
205+ "overridden in non-abstract derived classes."
206206msgstr ""
207207
208208msgid ""
209209"The :meth:`__subclasshook__` class method defined here says that any class "
210- "that has an :meth:`~iterator .__iter__` method in its :attr:`~object."
211- "__dict__` (or in that of one of its base classes, accessed via the :attr:"
212- "`~type. __mro__` list) is considered a ``MyIterable`` too."
210+ "that has an :meth:`~object .__iter__` method in its :attr:`~object.__dict__` "
211+ "(or in that of one of its base classes, accessed via the :attr:`~type. "
212+ "__mro__` list) is considered a ``MyIterable`` too."
213213msgstr ""
214214
215215msgid ""
216216"Finally, the last line makes ``Foo`` a virtual subclass of ``MyIterable``, "
217- "even though it does not define an :meth:`~iterator .__iter__` method (it uses "
217+ "even though it does not define an :meth:`~object .__iter__` method (it uses "
218218"the old-style iterable protocol, defined in terms of :meth:`~object.__len__` "
219219"and :meth:`~object.__getitem__`). Note that this will not make "
220220"``get_iterator`` available as a method of ``Foo``, so it is provided "
0 commit comments