@@ -199694,32 +199694,43 @@ msgid ""
199694199694"dictionary, or instances of most classes. For example, the following "
199695199695"function accumulates the arguments passed to it on subsequent calls::"
199696199696msgstr ""
199697+ "**Ważna uwaga**: Wartość domyślna jest wyliczana tylko raz. Ma to znaczenie, "
199698+ "gdy domyślna wartość jest obiektem mutowalnym takim jak lista, słownik lub "
199699+ "instancje większości klas. Na przykład następująca funkcja akumuluje "
199700+ "argumenty przekazane do niej w kolejnych wywołaniach::"
199697199701
199698199702msgid "This will print ::"
199699- msgstr ""
199703+ msgstr "To wyświetli :: "
199700199704
199701199705msgid ""
199702199706"If you don't want the default to be shared between subsequent calls, you can "
199703199707"write the function like this instead::"
199704199708msgstr ""
199709+ "Jeśli nie chcesz, żeby domyślna wartość była współdzielona pomiędzy "
199710+ "kolejnymi wywołaniami, możesz napisać funkcję w ten sposób::"
199705199711
199706199712msgid "Keyword Arguments"
199707- msgstr ""
199713+ msgstr "Argumenty nazwane "
199708199714
199709199715msgid ""
199710199716"Functions can also be called using :term:`keyword arguments <keyword "
199711199717"argument>` of the form ``kwarg=value``. For instance, the following "
199712199718"function::"
199713199719msgstr ""
199720+ "Funkcje mogą być również wywoływane przy użyciu :term:`argumentów nazwanych "
199721+ "<keyword argument>` w formie ``kwarg=value``. Na przykład poniższa funkcja::"
199714199722
199715199723msgid ""
199716199724"accepts one required argument (``voltage``) and three optional arguments "
199717199725"(``state``, ``action``, and ``type``). This function can be called in any "
199718199726"of the following ways::"
199719199727msgstr ""
199728+ "akceptuje jeden wymagany argument (``voltage``) i trzy opcjonalne argumenty "
199729+ "(``state``, ``action`` i ``type``). Funkcja może być wywołana w dowolny z "
199730+ "poniższych sposobów::"
199720199731
199721199732msgid "but all the following calls would be invalid::"
199722- msgstr ""
199733+ msgstr "ale wszystkie poniższe wywołania byłyby niepoprawne:: "
199723199734
199724199735msgid ""
199725199736"In a function call, keyword arguments must follow positional arguments. All "
@@ -199730,6 +199741,14 @@ msgid ""
199730199741"may receive a value more than once. Here's an example that fails due to this "
199731199742"restriction::"
199732199743msgstr ""
199744+ "W wywołaniu funkcji argumenty nazwane muszą znajdować się za argumentami "
199745+ "pozycyjnymi. Wszystkie przekazane argumenty nazwane muszą pasować do jednego "
199746+ "argumentu akceptowanego przez funkcję (na przykład ``actor`` nie jest "
199747+ "poprawnym argumentem dla funkcji ``parrot``) a ich kolejność nie ma "
199748+ "znaczenia. Dotyczy to również nie-opcjonalnych argumentów (na przykład "
199749+ "``parrot(voltage=1000)`` też jest poprawne). Żaden argument nie może "
199750+ "otrzymać wartości więcej niż raz. Tutaj jest przykład, który się nie "
199751+ "powiedzie z powodu tego ograniczenia::"
199733199752
199734199753msgid ""
199735199754"When a final formal parameter of the form ``**name`` is present, it receives "
0 commit comments