aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_getopt.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2022-08-04 19:12:35 +0300
committerGitHub <noreply@github.com>2022-08-04 18:12:35 +0200
commitab8a5beb5faf23795ede1e6304aebbcf2e20e0aa (patch)
treef96a8605355b4a657f1e66b6ba3e2796fb9ae751 /Lib/test/test_getopt.py
parent5b6acbaa20aa8c80c0f10986bf6c755608664023 (diff)
downloadcpython-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.py2
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, [])