put docstrings on functions

This commit is contained in:
Benjamin Peterson 2012-02-20 15:06:35 -05:00
parent 3443fe60c7
commit 6ddac006be
1 changed files with 2 additions and 2 deletions

View File

@ -24,12 +24,12 @@ CASE_INSENSITIVE_PLATFORMS = 'win', 'cygwin', 'darwin'
def _make_relax_case():
if any(map(sys.platform.startswith, CASE_INSENSITIVE_PLATFORMS)):
"""True if filenames must be checked case-insensitively."""
def _relax_case():
"""True if filenames must be checked case-insensitively."""
return b'PYTHONCASEOK' in _os.environ
else:
"""True if filenames must be checked case-insensitively."""
def _relax_case():
"""True if filenames must be checked case-insensitively."""
return False
return _relax_case