@@ -3399,9 +3399,9 @@ msgid ""
33993399"see :func:`classmethod` for a variant that is useful for creating alternate "
34003400"class constructors."
34013401msgstr ""
3402- "Metody statyczne w Python są podobne do tych, które można znaleźć w Java lub "
3403- "C++. Zobacz także :func:`classmethod`, aby zapoznać się z wariantem, który "
3404- "jest przydatny do tworzenia alternatywnych konstruktorów klas."
3402+ "Metody statyczne w Pythonie są podobne do tych, które można znaleźć w Java "
3403+ "lub C++. Zobacz także :func:`classmethod`, aby zapoznać się z wariantem, "
3404+ "który jest przydatny do tworzenia alternatywnych konstruktorów klas."
34053405
34063406msgid ""
34073407"Like all decorators, it is also possible to call ``staticmethod`` as a "
@@ -3423,11 +3423,11 @@ msgid ""
34233423"class C:\n"
34243424" method = staticmethod(regular_function)"
34253425msgstr ""
3426- "def standardowa_funkcja ():\n"
3426+ "def regular_function ():\n"
34273427" ...\n"
34283428"\n"
34293429"class C:\n"
3430- " methoda = staticmethod(standardowa_funkcja )"
3430+ " method = staticmethod(regular_function )"
34313431
34323432msgid "For more information on static methods, see :ref:`types`."
34333433msgstr ""
@@ -3677,16 +3677,16 @@ msgid ""
36773677"type object and generally the same object as returned by :attr:`object."
36783678"__class__`."
36793679msgstr ""
3680- "Z jednym argumentem, zwraca typ * obiektu* . Typ zwracanej wartość jest "
3681- "obiektem typu i generalnie jest to ten sam obiekt, który został zwrócony "
3680+ "Z jednym argumentem, zwraca typ obiektu *object* . Zwracana wartość to "
3681+ "obiekt typu i generalnie jest to ten sam obiekt, który został zwrócony "
36823682"przez :attr:`object.__class__`."
36833683
36843684msgid ""
36853685"The :func:`isinstance` built-in function is recommended for testing the type "
36863686"of an object, because it takes subclasses into account."
36873687msgstr ""
3688- "Funckja wbudowana :func:`isinstance` jest zalecana do testowania typu "
3689- "obiektu, ponieważ uwzględnia podklasa ."
3688+ "Funkcja wbudowana :func:`isinstance` jest zalecana do testowania typu "
3689+ "obiektu, ponieważ uwzględnia podklasy ."
36903690
36913691msgid ""
36923692"With three arguments, return a new type object. This is essentially a "
@@ -3699,14 +3699,14 @@ msgid ""
36993699"__dict__` attribute. The following two statements create identical :class:`!"
37003700"type` objects:"
37013701msgstr ""
3702- "Z trzema argumentamy, zwracać nowy typ obiektu. Jest to zasadniczo "
3703- "dynamiczna forma :keyword:`class` instrukcja . *name* napis jest nazwą klasy "
3704- "i staje się :attr:`~type.__name__` atrybut . *bases* krotka zawiera klasy "
3705- "bazowe i staje się :attr:`~type.__bases__` atrybut ; jeśli jest pusta, "
3706- "dodawana jest :class:`object`, ostateczna baza wszystkich klas. The *dict* "
3707- "słownik zawiera atrybut i definicje metod dla ciało klasy; może być "
3708- "kopiowany lub zawijany zanim stanie się :attr:`~type.__dict__` atrybut . "
3709- "Następujące dwa instrukcja tworzą identyczne :class:`!type` obiekty :"
3702+ "Z trzema argumentami, zwraca nowy typ obiektu. Jest to zasadniczo dynamiczna "
3703+ "forma instrukcji :keyword:`class`. Ciąg znaków *name* jest nazwą klasy i "
3704+ "staje się atrybutem :attr:`~type.__name__`. Krotka *bases* zawiera klasy "
3705+ "bazowe i staje się atrybutem :attr:`~type.__bases__`; jeśli jest pusta, "
3706+ "dodawana jest :class:`object`, ostateczna baza wszystkich klas. Słownik "
3707+ "*dict* zawiera definicje atrybutów i metod dla ciała klasy; może być "
3708+ "kopiowany lub wrapowany zanim stanie się atrybutem :attr:`~type.__dict__`. "
3709+ "Następujące dwie instrukcja tworzą identyczne obiekty :class:`!type`:"
37103710
37113711msgid "See also:"
37123712msgstr "Zobacz także:"
@@ -3736,6 +3736,10 @@ msgid ""
37363736"the metaclass ``__prepare__`` method (see :ref:`prepare`). Use :func:`types."
37373737"new_class` to dynamically create a class using the appropriate metaclass."
37383738msgstr ""
3739+ "W przeciwieństwie do instrukcji :keyword:`class`, forma z trzema argumentami "
3740+ "nie wywołuje metody ``__prepare__`` metaklasy (zobacz :ref:`prepare`). Aby "
3741+ "dynamicznie utworzyć klasę przy użyciu odpowiedniej metaklasy, należy "
3742+ "skorzystać z :func:`types.new_class`."
37393743
37403744msgid "See also :ref:`class-customization`."
37413745msgstr "Zobacz także :ref:`class-customization`."
0 commit comments