diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-08-04 19:12:35 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-04 18:12:35 +0200 |
commit | ab8a5beb5faf23795ede1e6304aebbcf2e20e0aa (patch) | |
tree | f96a8605355b4a657f1e66b6ba3e2796fb9ae751 /Lib/test/test_getopt.py | |
parent | 5b6acbaa20aa8c80c0f10986bf6c755608664023 (diff) | |
download | cpython-ab8a5beb5faf23795ede1e6304aebbcf2e20e0aa.tar.gz cpython-ab8a5beb5faf23795ede1e6304aebbcf2e20e0aa.zip |
Fix links to old SF bugs (#95648)
Diffstat (limited to 'Lib/test/test_getopt.py')
-rw-r--r-- | Lib/test/test_getopt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_getopt.py b/Lib/test/test_getopt.py index 64b9ce01e05..c96a33b77fe 100644 --- a/Lib/test/test_getopt.py +++ b/Lib/test/test_getopt.py @@ -83,7 +83,7 @@ class GetoptTests(unittest.TestCase): # Much like the preceding, except with a non-alpha character ("-") in # option name that precedes "="; failed in - # http://python.org/sf/126863 + # https://bugs.python.org/issue126863 opts, args = getopt.do_longs([], 'foo=42', ['foo-bar', 'foo=',], []) self.assertEqual(opts, [('--foo', '42')]) self.assertEqual(args, []) |