@@ -547,10 +547,14 @@ msgid ""
547547"You could use a global variable containing a dictionary instead of the "
548548"default value; it's a matter of taste."
549549msgstr ""
550+ "Można użyć zmiennej globalnej zawierającej słownik zamiast wartości "
551+ "domyślnej; jest to kwestia gustu."
550552
551553msgid ""
552554"How can I pass optional or keyword parameters from one function to another?"
553555msgstr ""
556+ "Jak można przekazać opcjonalne parametry lub argumenty nazwane z jednej "
557+ "funkcji do innej funkcji?"
554558
555559msgid ""
556560"Collect the arguments using the ``*`` and ``**`` specifiers in the "
@@ -579,17 +583,17 @@ msgid "the values ``42``, ``314``, and ``somevar`` are arguments."
579583msgstr ""
580584
581585msgid "Why did changing list 'y' also change list 'x'?"
582- msgstr ""
586+ msgstr "Dlaczego zmiana listy „y” spowodowała również zmianę listy „x”? "
583587
584588msgid "If you wrote code like::"
585- msgstr ""
589+ msgstr "Jeśli napisałeś kod taki jak:: "
586590
587591msgid ""
588592"you might be wondering why appending an element to ``y`` changed ``x`` too."
589593msgstr ""
590594
591595msgid "There are two factors that produce this result:"
592- msgstr ""
596+ msgstr "Na ten wynik składają się dwa czynniki: "
593597
594598msgid ""
595599"Variables are simply names that refer to objects. Doing ``y = x`` doesn't "
@@ -600,7 +604,7 @@ msgstr ""
600604
601605msgid ""
602606"Lists are :term:`mutable`, which means that you can change their content."
603- msgstr ""
607+ msgstr "Listy są :term:mutable, co oznacza, że można zmieniać ich zawartość. "
604608
605609msgid ""
606610"After the call to :meth:`!append`, the content of the mutable object has "
@@ -640,6 +644,12 @@ msgid ""
640644"mutates ``a_list``, whereas ``some_tuple += (1, 2, 3)`` and ``some_int += "
641645"1`` create new objects)."
642646msgstr ""
647+ "Jednak istnieje jedna klasa operacji, w której ta sama operacja może "
648+ "zachowywać się różnie w zależności od typu: operatory przypisania "
649+ "rozszerzonego. Na przykład 1``+=`` modyfikuje listy, ale nie krotki ani "
650+ "liczby całkowite (2``a_list`` += [1, 2, 3]`` jest równoważne 3``a_list``."
651+ "extend([1, 2, 3`)``i modyfikuje 4``a_list``, natomiast 5``some_tuple += (1, "
652+ "2, 3)`` oraz 6``some_int += 1`` tworzą nowe obiekty)."
643653
644654msgid "In other words:"
645655msgstr "Innymi słowami:"
0 commit comments