diff options
author | Victor Stinner <vstinner@python.org> | 2020-05-06 13:22:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 13:22:17 (GMT) |
commit | 2668a9a5aa506a048aef7b4881c8dcf6b81c6870 (patch) | |
tree | 114505d2feded932eae50177d9a705269784762d /Misc | |
parent | eff870b618ca6f6b7a60a271f15af7e54b8a1b97 (diff) | |
download | cpython-2668a9a5aa506a048aef7b4881c8dcf6b81c6870.zip cpython-2668a9a5aa506a048aef7b4881c8dcf6b81c6870.tar.gz cpython-2668a9a5aa506a048aef7b4881c8dcf6b81c6870.tar.bz2 |
bpo-40527: Fix command line argument parsing (GH-19955)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-05-06-14-52-35.bpo-40527.gTNKuy.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-05-06-14-52-35.bpo-40527.gTNKuy.rst b/Misc/NEWS.d/next/Core and Builtins/2020-05-06-14-52-35.bpo-40527.gTNKuy.rst new file mode 100644 index 0000000..19b8888 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-05-06-14-52-35.bpo-40527.gTNKuy.rst @@ -0,0 +1,2 @@ +Fix command line argument parsing: no longer write errors multiple times +into stderr. |