File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ f'''[](https://translations.python.org/#pl)''')
1515]]] -->
1616[ ![ build] ( https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg )] ( https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml )
17- [ ![ core 97.56 %] ( https://img.shields.io/badge/core-97.56 %25-0.svg )] ( https://translations.python.org/#pl )
17+ [ ![ core 97.60 %] ( https://img.shields.io/badge/core-97.60 %25-0.svg )] ( https://translations.python.org/#pl )
1818[ ![ Total Translation of Documentation] ( https://img.shields.io/badge/total_words-5.11%25-0.svg )] ( https://translations.python.org/#pl )
1919[ ![ Total Translation of Documentation] ( https://img.shields.io/badge/total_strings-11.73%25-0.svg )] ( https://translations.python.org/#pl )
2020<!-- [[[end]]] -->
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ f'''[](https://translations.python.org/#pl)''')
1515]]] -->
1616[ ![ build] ( https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg )] ( https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml )
17- [ ![ podstawowe artykuły 97.56 %] ( https://img.shields.io/badge/podstawowe_artykuły-97.56 %25-0.svg )] ( https://translations.python.org/#pl )
17+ [ ![ podstawowe artykuły 97.60 %] ( https://img.shields.io/badge/podstawowe_artykuły-97.60 %25-0.svg )] ( https://translations.python.org/#pl )
1818[ ![ postęp tłumaczenia całości dokumentacji] ( https://img.shields.io/badge/całość_słów-5.11%25-0.svg )] ( https://translations.python.org/#pl )
1919[ ![ postęp tłumaczenia całości dokumentacji] ( https://img.shields.io/badge/całość_napisów-11.73%25-0.svg )] ( https://translations.python.org/#pl )
2020<!-- [[[end]]] -->
Original file line number Diff line number Diff line change @@ -596,18 +596,21 @@ msgid ""
596596"prefixing an expression by a ``*`` will unpack the result of that "
597597"expression, adding each of its elements to the list we're creating::"
598598msgstr ""
599- "Sekcja dotycząca :ref:`tut-rozpakować-argument ` opisuje użycie ``*`` do "
600- "\" rozpakować \" elementów obiektu iterable , dostarczając każdy z nich osobno "
601- "jako argument do funkcja. rozpakować może być również używany w innych "
602- "kontekstach, na przykład podczas tworzenia list. Podczas określania "
603- "elementów listy, poprzedzenie wyrażenia przez ``*`` spowoduje rozpakować "
604- "wynik tego wyrażenia, dodając każdy z jego elementów do tworzonej listy::"
599+ "Sekcja dotycząca :ref:`tut-unpacking-arguments ` opisuje użycie ``*`` do "
600+ "\" rozpakowywania \" elementów iterowalnego obiektu , dostarczając każdy z nich "
601+ "osobno jako argument do funkcji. Rozpakowywanie może być również używane w "
602+ "innych kontekstach, na przykład podczas tworzenia list. Podczas określania "
603+ "elementów listy, poprzedzenie wyrażenia znakiem ``*`` spowoduje rozpakowanie "
604+ "wyniku tego wyrażenia, dodając każdy z jego elementów do tworzonej listy::"
605605
606606msgid ""
607607">>> x = [1, 2, 3]\n"
608608">>> [0, *x, 4, 5, 6]\n"
609609"[0, 1, 2, 3, 4, 5, 6]"
610610msgstr ""
611+ ">>> x = [1, 2, 3]\n"
612+ ">>> [0, *x, 4, 5, 6]\n"
613+ "[0, 1, 2, 3, 4, 5, 6]"
611614
612615msgid ""
613616"This only works if the expression following the ``*`` evaluates to an "
You can’t perform that action at this time.
0 commit comments