@@ -16,7 +16,7 @@ msgid ""
1616msgstr ""
1717"Project-Id-Version : Python 3.13\n "
1818"Report-Msgid-Bugs-To : \n "
19- "POT-Creation-Date : 2024-10-04 14:17+0000\n "
19+ "POT-Creation-Date : 2024-10-11 14:17+0000\n "
2020"PO-Revision-Date : 2021-06-28 01:50+0000\n "
2121"
Last-Translator :
Maciej Olko <[email protected] >, 2024\n "
2222"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -117,6 +117,24 @@ msgid ""
117117" ~~~~^~~\n"
118118"TypeError: can only concatenate str (not \" int\" ) to str"
119119msgstr ""
120+ ">>> 10 * (1/0)\n"
121+ "Traceback (most recent call last):\n"
122+ " File \" <stdin>\" , line 1, in <module>\n"
123+ " 10 * (1/0)\n"
124+ " ~^~\n"
125+ "ZeroDivisionError: division by zero\n"
126+ ">>> 4 + spam*3\n"
127+ "Traceback (most recent call last):\n"
128+ " File \" <stdin>\" , line 1, in <module>\n"
129+ " 4 + spam*3\n"
130+ " ^^^^\n"
131+ "NameError: name 'spam' is not defined\n"
132+ ">>> '2' + 2\n"
133+ "Traceback (most recent call last):\n"
134+ " File \" <stdin>\" , line 1, in <module>\n"
135+ " '2' + 2\n"
136+ " ~~~~^~~\n"
137+ "TypeError: can only concatenate str (not \" int\" ) to str"
120138
121139msgid ""
122140"The last line of the error message indicates what happened. Exceptions come "
@@ -538,6 +556,11 @@ msgid ""
538556" raise NameError('HiThere')\n"
539557"NameError: HiThere"
540558msgstr ""
559+ ">>> raise NameError('CześćiCzołem')\n"
560+ "Traceback (most recent call last):\n"
561+ " File \" <stdin>\" , line 1, in <module>\n"
562+ " raise NameError('CześćiCzołem')\n"
563+ "NameError: CześćiCzołem"
541564
542565msgid ""
543566"The sole argument to :keyword:`raise` indicates the exception to be raised. "
0 commit comments