@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.12\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2024-11-01 14:52 +0000\n "
14+ "POT-Creation-Date : 2024-11-08 14:48 +0000\n "
1515"PO-Revision-Date : 2024-05-11 00:34+0000\n "
1616"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -697,6 +697,8 @@ msgid ""
697697"The other kind of instance attribute reference is a *method*. A method is a "
698698"function that \" belongs to\" an object."
699699msgstr ""
700+ "Innym rodzajem odniesienia do atrybutu instancji jest *metoda*. Metoda to "
701+ "funkcja, która „należy” do obiektu."
700702
701703msgid ""
702704"Valid method names of an instance object depend on its class. By "
@@ -706,15 +708,21 @@ msgid ""
706708"not, since ``MyClass.i`` is not. But ``x.f`` is not the same thing as "
707709"``MyClass.f`` --- it is a *method object*, not a function object."
708710msgstr ""
711+ "Prawidłowe nazwy metod obiektu instancji zależą od jego klasy. Z definicji "
712+ "wszystkie atrybuty klasy, które są obiektami funkcji definiują odpowiednie "
713+ "metody jej instancji. Tak więc w naszym przykładzie, ``x.f`` jest poprawnym "
714+ "odwołaniem do metody, ponieważ ``MyClass.f`` jest funkcją, ale ``x.i`` nie "
715+ "jest, ponieważ ``MyClass.i`` nie jest. Ale ``x.f`` nie jest tym samym co "
716+ "``MyClass.f`` --- jest *obiektem metody*, a nie obiektem funkcji."
709717
710718msgid "Method Objects"
711- msgstr ""
719+ msgstr "Obiekty metod "
712720
713721msgid "Usually, a method is called right after it is bound::"
714- msgstr ""
722+ msgstr "Zazwyczaj metoda jest wywoływana zaraz po jej powiązaniu:: "
715723
716724msgid "x.f()"
717- msgstr ""
725+ msgstr "x.f() "
718726
719727msgid ""
720728"In the :class:`!MyClass` example, this will return the string ``'hello "
@@ -728,6 +736,9 @@ msgid ""
728736"while True:\n"
729737" print(xf())"
730738msgstr ""
739+ "xf = x.f\n"
740+ "while True:\n"
741+ " print(xf())"
731742
732743msgid "will continue to print ``hello world`` until the end of time."
733744msgstr ""
0 commit comments