88# haaritsubaki, 2023
99# Ciarbin <[email protected] >, 20241010# Wiktor Matuszewski <[email protected] >, 202411- # Stanislaw Ulbrych, 2024
1211# Maciej Olko <[email protected] >, 202412+ # Stanislaw Ulbrych, 2024
1313#
1414#, fuzzy
1515msgid ""
1616msgstr ""
1717"Project-Id-Version : Python 3.13\n "
1818"Report-Msgid-Bugs-To : \n "
19- "POT-Creation-Date : 2024-12-06 14:18+0000\n "
19+ "POT-Creation-Date : 2024-12-13 14:18+0000\n "
2020"PO-Revision-Date : 2021-06-28 01:06+0000\n "
21- "
Last-Translator :
Maciej Olko <[email protected] > , 2024\n"
21+ "Last-Translator : Stanislaw Ulbrych , 2024\n "
2222"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
2323"MIME-Version : 1.0\n "
2424"Content-Type : text/plain; charset=UTF-8\n "
@@ -965,6 +965,11 @@ msgid ""
965965"example, ``delattr(x, 'foobar')`` is equivalent to ``del x.foobar``. *name* "
966966"need not be a Python identifier (see :func:`setattr`)."
967967msgstr ""
968+ "Jest to krewny :func:`setattr`. Argumenty są obiektem i napisem. Napis musi "
969+ "być nazwą jednego z atrybut obiektu. Funkcja usuwa nazwany atrybut, pod "
970+ "warunkiem, że obiekt na to pozwala. Na przykład, ``delattr(x, 'foobar')`` "
971+ "jest równoważne ``del x.foobar``. *name* nie musi być identyfikatorem Python "
972+ "(zobacz :func:`setattr`)."
968973
969974msgid ""
970975"Create a new dictionary. The :class:`dict` object is the dictionary class. "
@@ -996,6 +1001,11 @@ msgid ""
9961001"__getattribute__` function to customize the way :func:`dir` reports their "
9971002"attributes."
9981003msgstr ""
1004+ "Jeśli obiekt posiada metodę o nazwie :meth:`~object.__dir__`, metoda ta "
1005+ "zostanie wywołana i musi zwracać listę atrybut. Pozwala to obiektom, które "
1006+ "implementują niestandardowe :func:`~object.__getattr__` lub :func:`~object."
1007+ "__getattribute__` funkcje na dostosowanie sposobu, w jaki :func:`dir` "
1008+ "zgłasza ich atrybuty."
9991009
10001010msgid ""
10011011"If the object does not provide :meth:`~object.__dir__`, the function tries "
@@ -1004,12 +1014,20 @@ msgid ""
10041014"necessarily complete and may be inaccurate when the object has a custom :"
10051015"func:`~object.__getattr__`."
10061016msgstr ""
1017+ "Jeśli obiekt nie udostępnia :meth:`~object.__dir__`, funkcja stara się "
1018+ "zebrać informacje z :attr:`~object.__dict__` atrybut obiektu, jeśli jest "
1019+ "zdefiniowany, oraz z jego obiektu typu. Wynikowa lista niekoniecznie jest "
1020+ "kompletna i może być niedokładna, jeśli obiekt ma niestandardowy :func:"
1021+ "`~object.__getattr__`."
10071022
10081023msgid ""
10091024"The default :func:`dir` mechanism behaves differently with different types "
10101025"of objects, as it attempts to produce the most relevant, rather than "
10111026"complete, information:"
10121027msgstr ""
1028+ "Mechanizm domyślny :func:`dir` zachowuje się inaczej w przypadku różnych "
1029+ "typów obiektów, ponieważ stara się uzyskać najbardziej istotne, a nie "
1030+ "kompletne informacje:"
10131031
10141032msgid ""
10151033"If the object is a module object, the list contains the names of the "
@@ -1022,12 +1040,16 @@ msgid ""
10221040"If the object is a type or class object, the list contains the names of its "
10231041"attributes, and recursively of the attributes of its bases."
10241042msgstr ""
1043+ "Jeśli obiekt jest obiektem typu lub klasy, lista zawiera nazwy jego atrybut "
1044+ "i rekurencyjnie atrybut jego baz."
10251045
10261046msgid ""
10271047"Otherwise, the list contains the object's attributes' names, the names of "
10281048"its class's attributes, and recursively of the attributes of its class's "
10291049"base classes."
10301050msgstr ""
1051+ "W przeciwnym razie lista zawiera nazwy atrybut' obiektow, nazwy atrybut jego "
1052+ "klasy i rekurencyjnie atrybut klas bazowych jego klasy."
10311053
10321054msgid "The resulting list is sorted alphabetically. For example:"
10331055msgstr "Wynikowa lista jest posortowana alfabetycznie. Na przykład:"
@@ -1039,6 +1061,12 @@ msgid ""
10391061"its detailed behavior may change across releases. For example, metaclass "
10401062"attributes are not in the result list when the argument is a class."
10411063msgstr ""
1064+ "Ponieważ :func:`dir` jest dostarczany głównie jako udogodnienie do użycia w "
1065+ "interaktywnym wierszu polecenia, stara się dostarczyć interesujący zestaw "
1066+ "nazw bardziej niż rygorystycznie lub konsekwentnie zdefiniowany zestaw nazw, "
1067+ "a jego szczegółowy zachowanie może się zmieniać w różnych wydaniach. Na "
1068+ "przykład, atrybut metaklasy nie znajduje się na liście wyników, gdy argument "
1069+ "jest klasą."
10421070
10431071msgid ""
10441072"Take two (non-complex) numbers as arguments and return a pair of numbers "
@@ -1050,6 +1078,15 @@ msgid ""
10501078"is very close to *a*, if ``a % b`` is non-zero it has the same sign as *b*, "
10511079"and ``0 <= abs(a % b) < abs(b)``."
10521080msgstr ""
1081+ "Weź dwie (niezłożone) liczby jako argumenty i zwraca parę liczb składającą "
1082+ "się z ich ilorazu i reszty, gdy używasz liczba całkowita dzielenia. W "
1083+ "przypadku mieszanych typów operandów obowiązują reguły dla binarnych "
1084+ "operatorów arytmetycznych. Dla liczb całkowitych wynik jest taki sam jak "
1085+ "``(a // b, a % b)``. Dla liczb zmiennoprzecinkowych wynikiem jest ``(q, a % "
1086+ "b)``, gdzie *q* jest zwykle ``math.floor(a / b)``, ale może być o 1 "
1087+ "mniejsze. W każdym przypadku ``q * b + a % b`` jest bardzo zbliżone do *a*, "
1088+ "jeśli ``a % b`` jest niezerowe, to ma taki sam znak jak *b* i ``0 <= abs(a % "
1089+ "b) < abs(b)``."
10531090
10541091msgid ""
10551092"Return an enumerate object. *iterable* must be a sequence, an :term:"
@@ -1153,13 +1190,23 @@ msgid ""
11531190"of a string. If the code object has been compiled with ``'exec'`` as the "
11541191"*mode* argument, :func:`eval`\\ 's return value will be ``None``."
11551192msgstr ""
1193+ "Ta funkcja może być również używana do wykonywania dowolnych obiektów kodu "
1194+ "(takich jak te utworzone przez :func:`compile`). W tym przypadku należy "
1195+ "przekazać obiekt kodu zamiast napisu. Jeśli obiekt kodu został skompilowany "
1196+ "z ``'exec'`` jako *mode* argument, :func:`eval` wartością zwracana będzie "
1197+ "``None``."
11561198
11571199msgid ""
11581200"Hints: dynamic execution of statements is supported by the :func:`exec` "
11591201"function. The :func:`globals` and :func:`locals` functions return the "
11601202"current global and local dictionary, respectively, which may be useful to "
11611203"pass around for use by :func:`eval` or :func:`exec`."
11621204msgstr ""
1205+ "Wskazówki: dynamiczne wykonywanie instrukcji jest obsługiwane przez :func:"
1206+ "`exec` funkcja . Adresy :func:`globals` i :func:`locals` funkcje zwracaja "
1207+ "określaaą odpowiednio bieżący globalny i lokalny adres słownika, który może "
1208+ "być przydatny do przekazania do użycia przez adresy :func:`eval` lub :func:"
1209+ "`exec`."
11631210
11641211msgid ""
11651212"If the given source is a string, then leading and trailing spaces and tabs "
0 commit comments