From ab8a5beb5faf23795ede1e6304aebbcf2e20e0aa Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Thu, 4 Aug 2022 19:12:35 +0300 Subject: Fix links to old SF bugs (#95648) --- Lib/test/test_getopt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_getopt.py') 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, []) -- cgit v1.2.3