Commit f8f3190d authored by Philip Jenvey's avatar Philip Jenvey

utilize startswith(tuple)

parent da4210f7
...@@ -23,7 +23,7 @@ CASE_INSENSITIVE_PLATFORMS = 'win', 'cygwin', 'darwin' ...@@ -23,7 +23,7 @@ CASE_INSENSITIVE_PLATFORMS = 'win', 'cygwin', 'darwin'
def _make_relax_case(): def _make_relax_case():
if any(map(sys.platform.startswith, CASE_INSENSITIVE_PLATFORMS)): if sys.platform.startswith(CASE_INSENSITIVE_PLATFORMS):
def _relax_case(): def _relax_case():
"""True if filenames must be checked case-insensitively.""" """True if filenames must be checked case-insensitively."""
return b'PYTHONCASEOK' in _os.environ return b'PYTHONCASEOK' in _os.environ
...@@ -163,7 +163,7 @@ code_type = type(_wrap.__code__) ...@@ -163,7 +163,7 @@ code_type = type(_wrap.__code__)
def verbose_message(message, *args): def verbose_message(message, *args):
"""Print the message to stderr if -v/PYTHONVERBOSE is turned on.""" """Print the message to stderr if -v/PYTHONVERBOSE is turned on."""
if sys.flags.verbose: if sys.flags.verbose:
if not message.startswith('#') and not message.startswith('import '): if not message.startswith(('#', 'import ')):
message = '# ' + message message = '# ' + message
print(message.format(*args), file=sys.stderr) print(message.format(*args), file=sys.stderr)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment