diff options
author | Georg Brandl <georg@python.org> | 2006-06-09 20:43:48 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-06-09 20:43:48 +0000 |
commit | b2afe855e5d75a570707d6bf0e32206e4b7b1c4d (patch) | |
tree | b637a7e78de40cf155c471e702e9b465fcd0625d /Lib/idlelib/configHelpSourceEdit.py | |
parent | 3ebef999e60cc63baafcdcfa0fd05c063715a66c (diff) | |
download | cpython-git-b2afe855e5d75a570707d6bf0e32206e4b7b1c4d.tar.gz |
Make use of new str.startswith/endswith semantics.
Occurences in email and compiler were ignored due to backwards compat requirements.
Diffstat (limited to 'Lib/idlelib/configHelpSourceEdit.py')
-rw-r--r-- | Lib/idlelib/configHelpSourceEdit.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/idlelib/configHelpSourceEdit.py b/Lib/idlelib/configHelpSourceEdit.py index 8924f792bb..661162196c 100644 --- a/Lib/idlelib/configHelpSourceEdit.py +++ b/Lib/idlelib/configHelpSourceEdit.py @@ -127,7 +127,7 @@ class GetHelpSourceDialog(Toplevel): parent=self) self.entryPath.focus_set() pathOk = False - elif path.startswith('www.') or path.startswith('http'): + elif path.startswith(('www.', 'http')): pass else: if path[:5] == 'file:': @@ -146,8 +146,7 @@ class GetHelpSourceDialog(Toplevel): self.path.get().strip()) if sys.platform == 'darwin': path = self.result[1] - if (path.startswith('www') or path.startswith('file:') - or path.startswith('http:')): + if path.startswith(('www', 'file:', 'http:')): pass else: # Mac Safari insists on using the URI form for local files |