diff options
author | Tian Gao <gaogaotiantian@hotmail.com> | 2023-09-22 16:55:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-22 16:55:48 (GMT) |
commit | 73ccfa28c5e6ff68de15fdbb1321d4773a688e61 (patch) | |
tree | b1cc8dfc638cd22a77fa440d09619b8c2d8a07d9 /Misc | |
parent | 3e8fcb7df74248530c4280915c77e69811f69c3f (diff) | |
download | cpython-73ccfa28c5e6ff68de15fdbb1321d4773a688e61.zip cpython-73ccfa28c5e6ff68de15fdbb1321d4773a688e61.tar.gz cpython-73ccfa28c5e6ff68de15fdbb1321d4773a688e61.tar.bz2 |
gh-109164: Replace `getopt` with `argparse` in pdb (#109165)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-09-08-22-26-26.gh-issue-109164.-9BFWR.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-09-08-22-26-26.gh-issue-109164.-9BFWR.rst b/Misc/NEWS.d/next/Library/2023-09-08-22-26-26.gh-issue-109164.-9BFWR.rst new file mode 100644 index 0000000..b439c14 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-09-08-22-26-26.gh-issue-109164.-9BFWR.rst @@ -0,0 +1 @@ +:mod:`pdb`: Replace :mod:`getopt` with :mod:`argparse` for parsing command line arguments. |