diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-05-15 13:25:39 -0400 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-05-15 13:25:39 -0400 |
commit | e6073944b65efc13731c73c044cee18af1b64d44 (patch) | |
tree | 42f01b6f651b764ebe2835e58c700048e62b9b19 | |
parent | 79f561d126d09d6d7ea1457a2a6ef267d93e6448 (diff) | |
parent | cd65a0302a919a584905ceb9c2c9f48200fac59f (diff) | |
download | cpython-git-e6073944b65efc13731c73c044cee18af1b64d44.tar.gz |
Merge with 3.5
-rw-r--r-- | Lib/idlelib/configHelpSourceEdit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configHelpSourceEdit.py b/Lib/idlelib/configHelpSourceEdit.py index b3028e9e2b..cde8118fe6 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 |