@@ -754,6 +754,8 @@ msgid ""
754754"This function raises :exc:`SyntaxError` if the compiled source is invalid, "
755755"and :exc:`ValueError` if the source contains null bytes."
756756msgstr ""
757+ "To funkcja rzuci :exc:`SyntaxError` jeśli skompilowane źródło jest "
758+ "nieprawidłowe, a :exc:`ValueError` jeśli źródło zawiera bajty null."
757759
758760msgid ""
759761"If you want to parse Python code into its AST representation, see :func:`ast."
@@ -767,6 +769,9 @@ msgid ""
767769"``source`` and ``filename``. This event may also be raised by implicit "
768770"compilation."
769771msgstr ""
772+ "Rzuci zdarzenie :ref:`auditing <auditing>` ``compile`` z argumentem "
773+ "``source`` i ``filename``. To zdarzenie może być również rzucone przez "
774+ "niejawną kompilację."
770775
771776msgid ""
772777"When compiling a string with multi-line code in ``'single'`` or ``'eval'`` "
@@ -797,6 +802,9 @@ msgid ""
797802"``ast.PyCF_ALLOW_TOP_LEVEL_AWAIT`` can now be passed in flags to enable "
798803"support for top-level ``await``, ``async for``, and ``async with``."
799804msgstr ""
805+ "``ast.PyCF_ALLOW_TOP_LEVEL_AWAIT`` można teraz przekazywać we flagach, aby "
806+ "włączyć obsługę najwyższego poziomu ``await``, ``async for`` i ``async "
807+ "with``."
800808
801809msgid ""
802810"Convert a single string or number to a complex number, or create a complex "
@@ -920,6 +928,8 @@ msgid ""
920928"For other containers see the built-in :class:`list`, :class:`set`, and :"
921929"class:`tuple` classes, as well as the :mod:`collections` module."
922930msgstr ""
931+ "Inne kontenery można znaleźć w klasach wbudowanych :class:`list` , :class:"
932+ "`set` i :class:`tuple`, a także moduł :mod:`collections` ."
923933
924934msgid ""
925935"Without arguments, return the list of names in the current local scope. "
@@ -1251,6 +1261,9 @@ msgid ""
12511261"Case is not significant, so, for example, \" inf\" , \" Inf\" , \" INFINITY\" , "
12521262"and \" iNfINity\" are all acceptable spellings for positive infinity."
12531263msgstr ""
1264+ "Wielkość liter nie ma znaczenia, więc na przykład \" inf\" , \" Inf\" , "
1265+ "\" INFINITY\" i \" iNfINity\" są akceptowalnymi pisowniami dla dodatniej "
1266+ "nieskończoności."
12541267
12551268msgid ""
12561269"Otherwise, if the argument is an integer or a floating-point number, a "
@@ -1318,6 +1331,8 @@ msgid ""
13181331"For other containers see the built-in :class:`set`, :class:`list`, :class:"
13191332"`tuple`, and :class:`dict` classes, as well as the :mod:`collections` module."
13201333msgstr ""
1334+ "Dla innych kontenerów zobacz klasy wbudowane :class:`set` , :class:`list`, :"
1335+ "class:`tuple` i :class:`dict`, jak również moduł :mod:`collections` ."
13211336
13221337msgid ""
13231338"Return the value of the named attribute of *object*. *name* must be a "
@@ -1386,6 +1401,8 @@ msgid ""
13861401"Changes to :mod:`pydoc` and :mod:`inspect` mean that the reported signatures "
13871402"for callables are now more comprehensive and consistent."
13881403msgstr ""
1404+ "Zmiany do :mod:`pydoc` i :mod:`inspect` oznaczają, że zgłoszone sygnatury "
1405+ "dla callables są teraz bardziej kompleksowe i spójne."
13891406
13901407msgid ""
13911408"Convert an integer number to a lowercase hexadecimal string prefixed with "
@@ -1452,6 +1469,8 @@ msgid ""
14521469"If the :mod:`readline` module was loaded, then :func:`input` will use it to "
14531470"provide elaborate line editing and history features."
14541471msgstr ""
1472+ "Jeśli załadowano moduł :mod:`readline` , to :func:`input` użyje go do "
1473+ "zapewnienia rozbudowanych funkcji edycji wierszy i historii."
14551474
14561475msgid ""
14571476"Raises an :ref:`auditing event <auditing>` ``builtins.input`` with argument "
@@ -1471,6 +1490,8 @@ msgid ""
14711490"Return an integer object constructed from a number or a string, or return "
14721491"``0`` if no arguments are given."
14731492msgstr ""
1493+ "Zwraca obiekt liczba całkowita zbudowana z liczby lub napisu, lub zwraca "
1494+ "``0`` jeśli nie podano argumentu."
14741495
14751496msgid ""
14761497">>> int(123.45)\n"
@@ -1648,6 +1669,8 @@ msgid ""
16481669"Rather than being a function, :class:`list` is actually a mutable sequence "
16491670"type, as documented in :ref:`typesseq-list` and :ref:`typesseq`."
16501671msgstr ""
1672+ "Zamiast być funkcja, :class:`list` jest w rzeczywistości zmiennym typem "
1673+ "sekwencji, jak udokumentowano w :ref:`typesseq-list` i :ref:`typesseq`."
16511674
16521675msgid ""
16531676"Return a mapping object representing the current local symbol table, with "
@@ -1705,6 +1728,8 @@ msgid ""
17051728"Calling ``locals()`` as part of a generator expression is equivalent to "
17061729"calling it in a nested generator function."
17071730msgstr ""
1731+ "Wywołanie ``locals()`` jako części wyrażenia generator jest równoważne "
1732+ "wywołaniu go w zagnieżdżonym generatorze funkcji ."
17081733
17091734msgid ""
17101735"The behaviour of ``locals()`` in a comprehension has been updated as "
@@ -1808,6 +1833,8 @@ msgid ""
18081833":class:`object` instances do *not* have :attr:`~object.__dict__` attributes, "
18091834"so you can't assign arbitrary attributes to an instance of :class:`object`."
18101835msgstr ""
1836+ ":class:`object` instancje *nie* mają :attr:`~object.__dict__` atrybut , więc "
1837+ "nie można przypisać dowolnego atrybuta do instancji :class:`object`."
18111838
18121839msgid ""
18131840"Convert an integer number to an octal string prefixed with \" 0o\" . The "
@@ -2074,6 +2101,15 @@ msgid ""
20742101"...\n"
20752102">>> os.close(dir_fd) # don't leak a file descriptor"
20762103msgstr ""
2104+ ">>> import os\n"
2105+ ">>> dir_fd = os.open('somedir', os.O_RDONLY)\n"
2106+ ">>> def opener(path, flags):\n"
2107+ "... return os.open(path, flags, dir_fd=dir_fd)\n"
2108+ "...\n"
2109+ ">>> with open('spamspam.txt', 'w', opener=opener) as f:\n"
2110+ "... print('To zostanie zapisane w somedir/spamspam.txt', file=f)\n"
2111+ "...\n"
2112+ ">>> os.close(dir_fd) # nie ujawniaj deskryptora pliku"
20772113
20782114msgid ""
20792115"The type of :term:`file object` returned by the :func:`open` function "
@@ -2088,12 +2124,27 @@ msgid ""
20882124"disabled, the raw stream, a subclass of :class:`io.RawIOBase`, :class:`io."
20892125"FileIO`, is returned."
20902126msgstr ""
2127+ "Typ :term:`file object` zwracany przez :func:`open` zależy od trybu. Gdy :"
2128+ "func:`open` jest używany do otwarcia pliku w trybie tekstowym (``'w'``, "
2129+ "``'r'``, ``'wt'``, ``'rt'``, itd.), to zwracana jest podklasa klasy :class:"
2130+ "`io.TextIOBase` (w szczególności :class:`io.TextIOWrapper`). W przypadku "
2131+ "użycia do otwarcia pliku w trybie binarnym z buforowaniem, zwracana klasą "
2132+ "jest podklasa z :class:`io.BufferedIOBase`. Dokładna klasa różni się: w "
2133+ "trybie odczytu binarnego, jest to zwracane z :class:`io.BufferedReader`; w "
2134+ "trybach zapisu binarnego i dołączania binarnego, jest to zwracane z :class:"
2135+ "`io.BufferedWriter`, a w trybie odczytu/zapisu, jest to zwracane z :class:"
2136+ "`io.BufferedRandom`. Gdy buforowanie jest wyłączone, zwracany jest "
2137+ "nieprzetworzony strumień, podklasa z :class:`io.RawIOBase`, :class:`io."
2138+ "FileIO`."
20912139
20922140msgid ""
20932141"See also the file handling modules, such as :mod:`fileinput`, :mod:`io` "
20942142"(where :func:`open` is declared), :mod:`os`, :mod:`os.path`, :mod:"
20952143"`tempfile`, and :mod:`shutil`."
20962144msgstr ""
2145+ "Zobacz także moduły obsługę plików, takich jak :mod:`fileinput`, :mod:`io` "
2146+ "(gdzie zadeklarowano :func:`open` ), :mod:`os`, :mod:`os.path`, :mod:"
2147+ "`tempfile` i :mod:`shutil`."
20972148
20982149msgid ""
20992150"Raises an :ref:`auditing event <auditing>` ``open`` with arguments ``path``, "
@@ -2237,6 +2288,8 @@ msgid ""
22372288"Output buffering is usually determined by *file*. However, if *flush* is "
22382289"true, the stream is forcibly flushed."
22392290msgstr ""
2291+ "Buforowanie wyjścia jest zwykle określane przez *file*. Jednakże, jeśli "
2292+ "*flush* jest prawdą, strumień jest przymusowo opróżniany."
22402293
22412294msgid "Added the *flush* keyword argument."
22422295msgstr "Dodano *flush* argument nazwany."
@@ -2270,6 +2323,20 @@ msgid ""
22702323"\n"
22712324" x = property(getx, setx, delx, \" I'm the 'x' property.\" )"
22722325msgstr ""
2326+ "class C:\n"
2327+ " def __init__(self):\n"
2328+ " self._x = None\n"
2329+ "\n"
2330+ " def getx(self):\n"
2331+ " return self._x\n"
2332+ "\n"
2333+ " def setx(self, value):\n"
2334+ " self._x = value\n"
2335+ "\n"
2336+ " def delx(self):\n"
2337+ " del self._x\n"
2338+ "\n"
2339+ " x = property(getx, setx, delx, \" I'm the 'x' property.\" )"
22732340
22742341msgid ""
22752342"If *c* is an instance of *C*, ``c.x`` will invoke the getter, ``c.x = "
@@ -2333,6 +2400,22 @@ msgid ""
23332400" def x(self):\n"
23342401" del self._x"
23352402msgstr ""
2403+ "class C:\n"
2404+ " def __init__(self):\n"
2405+ " self._x = None\n"
2406+ "\n"
2407+ " @property\n"
2408+ " def x(self):\n"
2409+ " \"\"\" I'm the 'x' property.\"\"\" \n"
2410+ " return self._x\n"
2411+ "\n"
2412+ " @x.setter\n"
2413+ " def x(self, value):\n"
2414+ " self._x = value\n"
2415+ "\n"
2416+ " @x.deleter\n"
2417+ " def x(self):\n"
2418+ " del self._x"
23362419
23372420msgid ""
23382421"This code is exactly equivalent to the first example. Be sure to give the "
@@ -2354,6 +2437,8 @@ msgid ""
23542437"Attribute holding the name of the property. The name of the property can be "
23552438"changed at runtime."
23562439msgstr ""
2440+ "Atrybut przechowująca nazwę właściwości. Nazwa właściwości może zostać "
2441+ "zmieniona w czasie wykonywania."
23572442
23582443msgid ""
23592444"Rather than being a function, :class:`range` is actually an immutable "
@@ -2441,6 +2526,9 @@ msgid ""
24412526"class:`tuple`, and :class:`dict` classes, as well as the :mod:`collections` "
24422527"module."
24432528msgstr ""
2529+ "Dla innych kontenerów zobacz klasy wbudowane :class:`frozenset` , :class:"
2530+ "`list`, :class:`tuple` i :class:`dict`, jak również :mod:`collections` "
2531+ "moduł ."
24442532
24452533msgid ""
24462534"This is the counterpart of :func:`getattr`. The arguments are an object, a "
@@ -2548,6 +2636,8 @@ msgid ""
25482636"A static method does not receive an implicit first argument. To declare a "
25492637"static method, use this idiom::"
25502638msgstr ""
2639+ "Metoda statyczna nie otrzymuje niejawnego pierwszego argumentu. Aby "
2640+ "zadeklarować metodę statyczną, użyj tego idiomu::"
25512641
25522642msgid ""
25532643"class C:\n"
@@ -2645,6 +2735,8 @@ msgid ""
26452735"Summation of floats switched to an algorithm that gives higher accuracy and "
26462736"better commutativity on most builds."
26472737msgstr ""
2738+ "Sumowanie zmiennoprzecinkowe zostało przełączone na algorytm, który zapewnia "
2739+ "większą dokładność i lepszą przemienność w większości kompilacji."
26482740
26492741msgid ""
26502742"Return a proxy object that delegates method calls to a parent or sibling "
@@ -2756,6 +2848,8 @@ msgid ""
27562848"Rather than being a function, :class:`tuple` is actually an immutable "
27572849"sequence type, as documented in :ref:`typesseq-tuple` and :ref:`typesseq`."
27582850msgstr ""
2851+ "Zamiast być funkcja, :class:`tuple` jest w rzeczywistości niezmiennym typem "
2852+ "sekwencji, jak udokumentowano w :ref:`typesseq-tuple` i :ref:`typesseq`."
27592853
27602854msgid ""
27612855"With one argument, return the type of an *object*. The return value is a "
@@ -2767,6 +2861,8 @@ msgid ""
27672861"The :func:`isinstance` built-in function is recommended for testing the type "
27682862"of an object, because it takes subclasses into account."
27692863msgstr ""
2864+ "Funckja wbudowana :func:`isinstance` jest zalecana do testowania typu "
2865+ "obiektu, ponieważ uwzględnia podklasa."
27702866
27712867msgid ""
27722868"With three arguments, return a new type object. This is essentially a "
@@ -2811,6 +2907,8 @@ msgid ""
28112907"Return the :attr:`~object.__dict__` attribute for a module, class, instance, "
28122908"or any other object with a :attr:`!__dict__` attribute."
28132909msgstr ""
2910+ "Zwraca atrybut :attr:`~object.__dict__` dla moduł, klas, instancji lub "
2911+ "dowolnego innego obiektu z :attr:`!__dict__` atrybut ."
28142912
28152913msgid ""
28162914"Objects such as modules and instances have an updateable :attr:`~object."
@@ -2832,6 +2930,8 @@ msgid ""
28322930"The result of calling this function without an argument has been updated as "
28332931"described for the :func:`locals` builtin."
28342932msgstr ""
2933+ "Wynik wywołania tej funkcji bez argumentow został zaktualizowany zgodnie z "
2934+ "opisem dla wbudowanej :func:`locals` ."
28352935
28362936msgid ""
28372937"Iterate over several iterables in parallel, producing tuples with an item "
0 commit comments