changeset: 101347:ada719145597 branch: 3.5 parent: 101342:c05689e630d3 user: Terry Jan Reedy date: Sun May 15 13:25:23 2016 -0400 files: Lib/idlelib/configHelpSourceEdit.py description: Issue #20640: Add https: to url prefixes so test passes on Darwin. diff -r c05689e630d3 -r ada719145597 Lib/idlelib/configHelpSourceEdit.py --- a/Lib/idlelib/configHelpSourceEdit.py Sun May 15 01:30:47 2016 -0400 +++ b/Lib/idlelib/configHelpSourceEdit.py Sun May 15 13:25:23 2016 -0400 @@ -149,7 +149,7 @@ 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