@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.13\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2024-09-27 14:17+0000\n "
14+ "POT-Creation-Date : 2024-10-04 14:17+0000\n "
1515"PO-Revision-Date : 2021-06-28 01:50+0000\n "
1616"
Last-Translator :
Maciej Olko <[email protected] >, 2024\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -1294,6 +1294,10 @@ msgid ""
12941294">>> non_null\n"
12951295"'Trondheim'"
12961296msgstr ""
1297+ ">>> string1, string2, string3 = '', 'Trondheim', 'Hammer Dance'\n"
1298+ ">>> non_null = string1 or string2 or string3\n"
1299+ ">>> non_null\n"
1300+ "'Trondheim'"
12971301
12981302msgid ""
12991303"Note that in Python, unlike C, assignment inside expressions must be done "
@@ -1346,6 +1350,13 @@ msgid ""
13461350"(1, 2, 3) == (1.0, 2.0, 3.0)\n"
13471351"(1, 2, ('aa', 'ab')) < (1, 2, ('abc', 'a'), 4)"
13481352msgstr ""
1353+ "(1, 2, 3) < (1, 2, 4)\n"
1354+ "[1, 2, 3] < [1, 2, 4]\n"
1355+ "'ABC' < 'C' < 'Pascal' < 'Python'\n"
1356+ "(1, 2, 3, 4) < (1, 2, 4)\n"
1357+ "(1, 2) < (1, 2, -1)\n"
1358+ "(1, 2, 3) == (1.0, 2.0, 3.0)\n"
1359+ "(1, 2, ('aa', 'ab')) < (1, 2, ('abc', 'a'), 4)"
13491360
13501361msgid ""
13511362"Note that comparing objects of different types with ``<`` or ``>`` is legal "
0 commit comments