From cd65a0302a919a584905ceb9c2c9f48200fac59f Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sun, 15 May 2016 13:25:23 -0400 Subject: Issue #20640: Add https: to url prefixes so test passes on Darwin. --- Lib/idlelib/configHelpSourceEdit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/configHelpSourceEdit.py b/Lib/idlelib/configHelpSourceEdit.py index b3028e9..cde8118 100644 --- a/Lib/idlelib/configHelpSourceEdit.py +++ b/Lib/idlelib/configHelpSourceEdit.py @@ -149,7 +149,7 @@ class GetHelpSourceDialog(Toplevel): self.path.get().strip()) if sys.platform == 'darwin': path = self.result[1] - if path.startswith(('www', 'file:', 'http:')): + if path.startswith(('www', 'file:', 'http:', 'https:')): pass else: # Mac Safari insists on using the URI form for local files -- cgit v0.12