@@ -646,10 +646,14 @@ msgid ""
646646"You could use a global variable containing a dictionary instead of the "
647647"default value; it's a matter of taste."
648648msgstr ""
649+ "Można użyć zmiennej globalnej zawierającej słownik zamiast wartości "
650+ "domyślnej; jest to kwestia gustu."
649651
650652msgid ""
651653"How can I pass optional or keyword parameters from one function to another?"
652654msgstr ""
655+ "Jak można przekazać opcjonalne parametry lub argumenty nazwane z jednej "
656+ "funkcji do innej funkcji?"
653657
654658msgid ""
655659"Collect the arguments using the ``*`` and ``**`` specifiers in the "
@@ -665,6 +669,8 @@ msgid ""
665669" ...\n"
666670" g(x, *args, **kwargs)"
667671msgstr ""
672+ "def f(x, *args, **kwargs):...kwargs['width'] = '14.3c'...g(x, *args, "
673+ "**kwargs)"
668674
669675msgid "What is the difference between arguments and parameters?"
670676msgstr "Jaka jest różnica pomiędzy argumentami a parametrami?"
@@ -680,24 +686,24 @@ msgstr ""
680686msgid ""
681687"def func(foo, bar=None, **kwargs):\n"
682688" pass"
683- msgstr ""
689+ msgstr "def func(foo, bar=None, **kwargs):pass "
684690
685691msgid ""
686692"*foo*, *bar* and *kwargs* are parameters of ``func``. However, when calling "
687693"``func``, for example::"
688694msgstr ""
689695
690696msgid "func(42, bar=314, extra=somevar)"
691- msgstr ""
697+ msgstr "func(42, bar=314, extra=somevar) "
692698
693699msgid "the values ``42``, ``314``, and ``somevar`` are arguments."
694700msgstr ""
695701
696702msgid "Why did changing list 'y' also change list 'x'?"
697- msgstr ""
703+ msgstr "Dlaczego zmiana listy „y” spowodowała również zmianę listy „x”? "
698704
699705msgid "If you wrote code like::"
700- msgstr ""
706+ msgstr "Jeśli napisałeś kod taki jak:: "
701707
702708msgid ""
703709">>> x = []\n"
@@ -721,7 +727,7 @@ msgid ""
721727msgstr ""
722728
723729msgid "There are two factors that produce this result:"
724- msgstr ""
730+ msgstr "Na ten wynik składają się dwa czynniki: "
725731
726732msgid ""
727733"Variables are simply names that refer to objects. Doing ``y = x`` doesn't "
@@ -732,7 +738,7 @@ msgstr ""
732738
733739msgid ""
734740"Lists are :term:`mutable`, which means that you can change their content."
735- msgstr ""
741+ msgstr "Listy są :term:mutable, co oznacza, że można zmieniać ich zawartość. "
736742
737743msgid ""
738744"After the call to :meth:`!append`, the content of the mutable object has "
@@ -752,6 +758,8 @@ msgid ""
752758">>> y\n"
753759"5"
754760msgstr ""
761+ ">>> x = 5 # inty są niezmienne>>> y = x>>> x = x + 1 # 5 nie może być "
762+ "zmienione, tworzymy nowy obiekt>>> x6>>> y5"
755763
756764msgid ""
757765"we can see that in this case ``x`` and ``y`` are not equal anymore. This is "
@@ -782,6 +790,12 @@ msgid ""
782790"mutates ``a_list``, whereas ``some_tuple += (1, 2, 3)`` and ``some_int += "
783791"1`` create new objects)."
784792msgstr ""
793+ "Jednak istnieje jedna klasa operacji, w której ta sama operacja może "
794+ "zachowywać się różnie w zależności od typu: operatory przypisania "
795+ "rozszerzonego. Na przykład 1``+=`` modyfikuje listy, ale nie krotki ani "
796+ "liczby całkowite (2``a_list`` += [1, 2, 3]`` jest równoważne 3``a_list``."
797+ "extend([1, 2, 3`)``i modyfikuje 4``a_list``, natomiast 5``some_tuple += (1, "
798+ "2, 3)`` oraz 6``some_int += 1`` tworzą nowe obiekty)."
785799
786800msgid "In other words:"
787801msgstr "Innymi słowami:"
0 commit comments