mirror of
https://github.com/python/cpython.git
synced 2025-09-19 23:20:25 +00:00
Issue #20640: Add https: to url prefixes so test passes on Darwin.
This commit is contained in:
parent
c64d942e8d
commit
cd65a0302a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue