@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.15\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2026-07-21 15:29 +0000\n "
14+ "POT-Creation-Date : 2026-08-09 14:27 +0000\n "
1515"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1616"Last-Translator : python-doc bot, 2025\n "
1717"Language-Team : Indonesian (https://app.transifex.com/python-doc/teams/5390/ "
@@ -1943,12 +1943,12 @@ msgid ""
19431943">>> # invalid option\n"
19441944">>> parser.parse_args(['--bar'])\n"
19451945"usage: PROG [-h] [--foo FOO] [bar]\n"
1946- "PROG: error: no such option : --bar\n"
1946+ "PROG: error: unrecognized arguments : --bar\n"
19471947"\n"
19481948">>> # wrong number of arguments\n"
19491949">>> parser.parse_args(['spam', 'badger'])\n"
19501950"usage: PROG [-h] [--foo FOO] [bar]\n"
1951- "PROG: error: extra arguments found : badger"
1951+ "PROG: error: unrecognized arguments: badger"
19521952msgstr ""
19531953
19541954msgid "Arguments containing ``-``"
@@ -1989,7 +1989,7 @@ msgid ""
19891989">>> # negative number options present, so -2 is an option\n"
19901990">>> parser.parse_args(['-2'])\n"
19911991"usage: PROG [-h] [-1 ONE] [foo]\n"
1992- "PROG: error: no such option : -2\n"
1992+ "PROG: error: unrecognized arguments : -2\n"
19931993"\n"
19941994">>> # negative number options present, so both -1s are options\n"
19951995">>> parser.parse_args(['-1', '-1'])\n"
@@ -2014,6 +2014,12 @@ msgid ""
20142014"ambiguous-arguments>` for more details."
20152015msgstr ""
20162016
2017+ msgid ""
2018+ "Negative-number matching was expanded to include numbers in scientific "
2019+ "notation (``-2.5e-6``), numbers containing underscores (``-1_234.5``), and "
2020+ "complex numbers (``-1.2e-3j``)."
2021+ msgstr ""
2022+
20172023msgid "Argument abbreviations (prefix matching)"
20182024msgstr ""
20192025
0 commit comments