File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Polskie tłumaczenie dokumentacji Pythona
22========================================
33![ build] ( https://github.com/python/python-docs-pl/workflows/.github/workflows/update-and-build.yml/badge.svg )
4- ![ 54.42 % przełącznika języków] ( https://img.shields.io/badge/przełącznik_języków-54.42 %25-0.svg )
4+ ![ 54.39 % przełącznika języków] ( https://img.shields.io/badge/przełącznik_języków-54.39 %25-0.svg )
55![ postęp tłumaczenia całości dokumentacji] ( https://img.shields.io/badge/dynamic/json.svg?label=całość&query=$.pl&url=http://gce.zhsj.me/python/newest )
66![ 18 tłumaczy] ( https://img.shields.io/badge/tłumaczy-18-0.svg )
77
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ msgid ""
1313msgstr ""
1414"Project-Id-Version : Python 3.11\n "
1515"Report-Msgid-Bugs-To : \n "
16- "POT-Creation-Date : 2022-12-23 04:14 +0000\n "
16+ "POT-Creation-Date : 2022-12-30 14:13 +0000\n "
1717"PO-Revision-Date : 2021-06-28 00:52+0000\n "
1818"Last-Translator : Maciej Olko <maciej.olko@gmail.com>, 2022\n "
1919"Language-Team : Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -935,6 +935,39 @@ msgstr ""
935935msgid "See the :ref:`unicode-howto`."
936936msgstr ""
937937
938+ msgid "Can I end a raw string with an odd number of backslashes?"
939+ msgstr ""
940+
941+ msgid ""
942+ "A raw string ending with an odd number of backslashes will escape the "
943+ "string's quote::"
944+ msgstr ""
945+
946+ msgid ""
947+ "There are several workarounds for this. One is to use regular strings and "
948+ "double the backslashes::"
949+ msgstr ""
950+
951+ msgid ""
952+ "Another is to concatenate a regular string containing an escaped backslash "
953+ "to the raw string::"
954+ msgstr ""
955+
956+ msgid ""
957+ "It is also possible to use :func:`os.path.join` to append a backslash on "
958+ "Windows::"
959+ msgstr ""
960+
961+ msgid ""
962+ "Note that while a backslash will \" escape\" a quote for the purposes of "
963+ "determining where the raw string ends, no escaping occurs when interpreting "
964+ "the value of the raw string. That is, the backslash remains present in the "
965+ "value of the raw string::"
966+ msgstr ""
967+
968+ msgid "Also see the specification in the :ref:`language reference <strings>`."
969+ msgstr ""
970+
938971msgid "Performance"
939972msgstr "Wydajność"
940973
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.11\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2022-12-26 16:15 +0000\n "
15+ "POT-Creation-Date : 2022-12-30 14:13 +0000\n "
1616"PO-Revision-Date : 2021-06-28 01:06+0000\n "
1717"Last-Translator : Maciej Olko <maciej.olko@gmail.com>, 2022\n "
1818"Language-Team : Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -2220,8 +2220,8 @@ msgid ""
22202220msgstr ""
22212221
22222222msgid ""
2223- "Unlike the default behavior, it checks that the lengths of iterables are "
2224- "identical, raising a :exc:`ValueError` if they aren't :"
2223+ "Unlike the default behavior, it raises a :exc:`ValueError` if one iterable "
2224+ "is exhausted before the others :"
22252225msgstr ""
22262226
22272227msgid ""
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.11\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2022-12-14 16:17 +0000\n "
14+ "POT-Creation-Date : 2022-12-30 14:13 +0000\n "
1515"PO-Revision-Date : 2021-06-28 01:50+0000\n "
1616"Last-Translator : Maciej Olko <maciej.olko@gmail.com>, 2022\n "
1717"Language-Team : Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -218,6 +218,12 @@ msgstr ""
218218"znaki specjalne, możesz użyć *surowych ciągów znaków* dodając ``r`` przed "
219219"pierwszym cudzysłowem::"
220220
221+ msgid ""
222+ "There is one subtle aspect to raw strings: a raw string may not end in an "
223+ "odd number of ``\\ `` characters; see :ref:`the FAQ entry <faq-programming-"
224+ "raw-string-backslash>` for more information and workarounds."
225+ msgstr ""
226+
221227msgid ""
222228"String literals can span multiple lines. One way is using triple-quotes: "
223229"``\"\"\" ...\"\"\" `` or ``'''...'''``. End of lines are automatically "
You can’t perform that action at this time.
0 commit comments