@@ -592,6 +592,9 @@ msgid ""
592592" @classmethod\n"
593593" def f(cls, arg1, arg2): ..."
594594msgstr ""
595+ "class C:\n"
596+ " @classmethod\n"
597+ " def f(cls, arg1, arg2): ..."
595598
596599msgid ""
597600"The ``@classmethod`` form is a function :term:`decorator` -- see :ref:"
@@ -712,6 +715,8 @@ msgid ""
712715"If you want to parse Python code into its AST representation, see :func:`ast."
713716"parse`."
714717msgstr ""
718+ "Jeśli chcesz przeanalizować kod Python do jego reprezentacji AST, zobacz :"
719+ "func:`ast.parse`."
715720
716721msgid ""
717722"Raises an :ref:`auditing event <auditing>` ``compile`` with arguments "
@@ -815,6 +820,8 @@ msgstr "Typ Complex został opisany na stronie :ref:`typesnumeric`."
815820
816821msgid "Grouping digits with underscores as in code literals is allowed."
817822msgstr ""
823+ "Dozwolone jest grupowanie cyfr za pomocą podkreślników, tak jak w literałach "
824+ "kodu."
818825
819826msgid ""
820827"Falls back to :meth:`~object.__index__` if :meth:`~object.__complex__` and :"
@@ -884,7 +891,7 @@ msgid ""
884891msgstr ""
885892
886893msgid "The resulting list is sorted alphabetically. For example:"
887- msgstr ""
894+ msgstr "Wynikowa lista jest posortowana alfabetycznie. Na przykład: "
888895
889896msgid ""
890897"Because :func:`dir` is supplied primarily as a convenience for use at an "
@@ -1002,6 +1009,8 @@ msgid ""
10021009"If the given source is a string, then leading and trailing spaces and tabs "
10031010"are stripped."
10041011msgstr ""
1012+ "Jeśli podane źródło to napis, początkowe i końcowe spacje i tabulatory są "
1013+ "usuwane."
10051014
10061015msgid ""
10071016"See :func:`ast.literal_eval` for a function that can safely evaluate strings "
@@ -1015,6 +1024,8 @@ msgstr ""
10151024
10161025msgid "The *globals* and *locals* arguments can now be passed as keywords."
10171026msgstr ""
1027+ "Funkcje *globals* i *locals* argumenty mogą być teraz przekazywane jako "
1028+ "słowa kluczowe."
10181029
10191030msgid ""
10201031"The semantics of the default *locals* namespace have been adjusted as "
@@ -1101,7 +1112,7 @@ msgid ""
11011112msgstr ""
11021113
11031114msgid "Return a floating-point number constructed from a number or a string."
1104- msgstr ""
1115+ msgstr "Zwraca liczba zmiennoprzecinkowa zbudowana z liczby lub napisu. "
11051116
11061117msgid ""
11071118">>> float('+1.23')\n"
@@ -1115,6 +1126,16 @@ msgid ""
11151126">>> float('-Infinity')\n"
11161127"-inf"
11171128msgstr ""
1129+ ">>> float('+1.23')\n"
1130+ "1.23\n"
1131+ ">>> float(' -12345\\ n')\n"
1132+ "-12345.0\n"
1133+ ">>> float('1e-003')\n"
1134+ "0.001\n"
1135+ ">>> float('+1E6')\n"
1136+ "1000000.0\n"
1137+ ">>> float('-Infinity')\n"
1138+ "-inf"
11181139
11191140msgid ""
11201141"If the argument is a string, it should contain a decimal number, optionally "
@@ -1145,7 +1166,7 @@ msgid ""
11451166msgstr ""
11461167
11471168msgid "If no argument is given, ``0.0`` is returned."
1148- msgstr ""
1169+ msgstr "Jeśli nie podano argumentu, zwracane jest ``0.0``. "
11491170
11501171msgid "The float type is described in :ref:`typesnumeric`."
11511172msgstr "Typ float został opisany na stronie :ref:`typesnumeric`."
@@ -1288,7 +1309,7 @@ msgid ""
12881309msgstr ""
12891310
12901311msgid "This is the address of the object in memory."
1291- msgstr ""
1312+ msgstr "Jest to adres obiektu w pamięci. "
12921313
12931314msgid ""
12941315"Raises an :ref:`auditing event <auditing>` ``builtins.id`` with argument "
@@ -1308,6 +1329,10 @@ msgid ""
13081329">>> s \n"
13091330"\" Monty Python's Flying Circus\" "
13101331msgstr ""
1332+ ">>> s = input('--> ') \n"
1333+ "--> Monty Python's Flying Circus\n"
1334+ ">>> s \n"
1335+ "\" Monty Python's Flying Circus\" "
13111336
13121337msgid ""
13131338"If the :mod:`readline` module was loaded, then :func:`input` will use it to "
@@ -1457,6 +1482,10 @@ msgid ""
14571482" for block in iter(partial(f.read, 64), b''):\n"
14581483" process_block(block)"
14591484msgstr ""
1485+ "from functools import partial\n"
1486+ "with open('mojedane.db', 'rb') as f:\n"
1487+ " for block in iter(partial(f.read, 64), b''):\n"
1488+ " process_block(block)"
14601489
14611490msgid ""
14621491"Return the length (the number of items) of an object. The argument may be a "
@@ -1592,6 +1621,8 @@ msgid ""
15921621"Return the smallest item in an iterable or the smallest of two or more "
15931622"arguments."
15941623msgstr ""
1624+ "Zwraca najmniejszy element w iterable lub najmniejszy z dwóch lub więcej "
1625+ "argumentow."
15951626
15961627msgid ""
15971628"If one positional argument is provided, it should be an :term:`iterable`. "
@@ -1910,6 +1941,8 @@ msgid ""
19101941"The ``mode`` and ``flags`` arguments may have been modified or inferred from "
19111942"the original call."
19121943msgstr ""
1944+ "Adresy ``mode`` i ``flags`` argumenty mogły zostać zmodyfikowane lub "
1945+ "wywnioskowane z oryginalnego połączenia."
19131946
19141947msgid "The *opener* parameter was added."
19151948msgstr ""
@@ -1993,6 +2026,10 @@ msgid ""
19932026">>> 23 * 38 % 97 == 1\n"
19942027"True"
19952028msgstr ""
2029+ ">>> pow(38, -1, mod=97)\n"
2030+ "23\n"
2031+ ">>> 23 * 38 % 97 == 1\n"
2032+ "True"
19962033
19972034msgid ""
19982035"For :class:`int` operands, the three-argument form of ``pow`` now allows the "
@@ -2002,6 +2039,8 @@ msgstr ""
20022039msgid ""
20032040"Allow keyword arguments. Formerly, only positional arguments were supported."
20042041msgstr ""
2042+ "Zezwalaj na argument nazwany. Wcześniej obsługiwane były tylko pozycyjne "
2043+ "argument."
20052044
20062045msgid ""
20072046"Print *objects* to the text stream *file*, separated by *sep* and followed "
@@ -2128,7 +2167,7 @@ msgid ""
21282167msgstr ""
21292168
21302169msgid "The docstrings of property objects are now writeable."
2131- msgstr ""
2170+ msgstr "Dokumentacja obiektów właściwości sa teraz zapisywalne. "
21322171
21332172msgid ""
21342173"Attribute holding the name of the property. The name of the property can be "
@@ -2153,7 +2192,7 @@ msgid ""
21532192msgstr ""
21542193
21552194msgid "This class has a custom representation that can be evaluated::"
2156- msgstr ""
2195+ msgstr "Ta klasa ma niestandardową reprezentację, którą można ocenić:: "
21572196
21582197msgid ""
21592198"class Person:\n"
@@ -2164,6 +2203,13 @@ msgid ""
21642203" def __repr__(self):\n"
21652204" return f\" Person('{self.name}', {self.age})\" "
21662205msgstr ""
2206+ "class Osoba:\n"
2207+ " def __init__(self, imie, wiek):\n"
2208+ " self.imie = imie\n"
2209+ " self.wiek = wiek\n"
2210+ "\n"
2211+ " def __repr__(self):\n"
2212+ " zwracać f \" Person('{self.imie}', {self.wiek})\" ."
21672213
21682214msgid ""
21692215"Return a reverse :term:`iterator`. *seq* must be an object which has a :"
@@ -2317,6 +2363,9 @@ msgid ""
23172363" @staticmethod\n"
23182364" def f(arg1, arg2, argN): ..."
23192365msgstr ""
2366+ "class C:\n"
2367+ " @staticmethod\n"
2368+ " def f(arg1, arg2, argN): ..."
23202369
23212370msgid ""
23222371"The ``@staticmethod`` form is a function :term:`decorator` -- see :ref:"
@@ -2453,14 +2502,18 @@ msgid ""
24532502msgstr ""
24542503
24552504msgid "For both use cases, a typical superclass call looks like this::"
2456- msgstr ""
2505+ msgstr "W obu przypadkach typowe wywołanie superklasy wygląda następująco:: "
24572506
24582507msgid ""
24592508"class C(B):\n"
24602509" def method(self, arg):\n"
24612510" super().method(arg) # This does the same thing as:\n"
24622511" # super(C, self).method(arg)"
24632512msgstr ""
2513+ "class C(B):\n"
2514+ " def methoda(self, arg):\n"
2515+ " super().methoda(arg) # To robi to samo co:\n"
2516+ " # super(C, self).methoda(arg)"
24642517
24652518msgid ""
24662519"In addition to method lookups, :func:`super` also works for attribute "
@@ -2491,6 +2544,9 @@ msgid ""
24912544"`super`, see `guide to using super() <https://rhettinger.wordpress."
24922545"com/2011/05/26/super-considered-super/>`_."
24932546msgstr ""
2547+ "Praktyczne sugestie dotyczące projektowania klas współpracujących przy "
2548+ "użyciu :func:`super` można znaleźć w `poradniku korzystania z super() "
2549+ "<https://rhettinger.wordpress.com/2011/05/26/super-considered-super/>`_."
24942550
24952551msgid ""
24962552"Rather than being a function, :class:`tuple` is actually an immutable "
@@ -2623,6 +2679,8 @@ msgid ""
26232679">>> list(zip(range(3), ['fee', 'fi', 'fo', 'fum']))\n"
26242680"[(0, 'fee'), (1, 'fi'), (2, 'fo')]"
26252681msgstr ""
2682+ ">>> list(zip(range(3), ['fee', 'fi', 'fo', 'fum']))\n"
2683+ "[(0, 'fee'), (1, 'fi'), (2, 'fo')]"
26262684
26272685msgid ""
26282686":func:`zip` is often used in cases where the iterables are assumed to be of "
@@ -2634,6 +2692,8 @@ msgid ""
26342692">>> list(zip(('a', 'b', 'c'), (1, 2, 3), strict=True))\n"
26352693"[('a', 1), ('b', 2), ('c', 3)]"
26362694msgstr ""
2695+ ">>> list(zip(('a', 'b', 'c'), (1, 2, 3), strict=True))\n"
2696+ "[('a', 1), ('b', 2), ('c', 3)]"
26372697
26382698msgid ""
26392699"Unlike the default behavior, it raises a :exc:`ValueError` if one iterable "
@@ -2738,7 +2798,7 @@ msgid "The statement ``import spam.ham`` results in this call::"
27382798msgstr ""
27392799
27402800msgid "spam = __import__('spam.ham', globals(), locals(), [], 0)"
2741- msgstr ""
2801+ msgstr "spam = __import__('spam.ham', globals(), locals(), [], 0) "
27422802
27432803msgid ""
27442804"Note how :func:`__import__` returns the toplevel module here because this is "
0 commit comments