@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.15\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2026-07-21 15:29 +0000\n "
15+ "POT-Creation-Date : 2026-08-09 14:27 +0000\n "
1616"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1717"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
1818"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -1968,12 +1968,12 @@ msgid ""
19681968">>> # invalid option\n"
19691969">>> parser.parse_args(['--bar'])\n"
19701970"usage: PROG [-h] [--foo FOO] [bar]\n"
1971- "PROG: error: no such option : --bar\n"
1971+ "PROG: error: unrecognized arguments : --bar\n"
19721972"\n"
19731973">>> # wrong number of arguments\n"
19741974">>> parser.parse_args(['spam', 'badger'])\n"
19751975"usage: PROG [-h] [--foo FOO] [bar]\n"
1976- "PROG: error: extra arguments found : badger"
1976+ "PROG: error: unrecognized arguments: badger"
19771977msgstr ""
19781978
19791979msgid "Arguments containing ``-``"
@@ -2014,7 +2014,7 @@ msgid ""
20142014">>> # negative number options present, so -2 is an option\n"
20152015">>> parser.parse_args(['-2'])\n"
20162016"usage: PROG [-h] [-1 ONE] [foo]\n"
2017- "PROG: error: no such option : -2\n"
2017+ "PROG: error: unrecognized arguments : -2\n"
20182018"\n"
20192019">>> # negative number options present, so both -1s are options\n"
20202020">>> parser.parse_args(['-1', '-1'])\n"
@@ -2041,6 +2041,12 @@ msgid ""
20412041"ambiguous-arguments>` for more details."
20422042msgstr ""
20432043
2044+ msgid ""
2045+ "Negative-number matching was expanded to include numbers in scientific "
2046+ "notation (``-2.5e-6``), numbers containing underscores (``-1_234.5``), and "
2047+ "complex numbers (``-1.2e-3j``)."
2048+ msgstr ""
2049+
20442050msgid "Argument abbreviations (prefix matching)"
20452051msgstr ""
20462052
0 commit comments