From: Benjamin Peterson <benjamin@python.org>
Date: Mon, 20 Feb 2012 20:06:35 +0000 (-0500)
Subject: put docstrings on functions
X-Git-Tag: v3.3.0a1~122
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6ddac006be85b839c9590aa2ec802b61f785f7e2;p=python

put docstrings on functions
---

diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py
index fe5f911df5..7ebb72321f 100644
--- a/Lib/importlib/_bootstrap.py
+++ b/Lib/importlib/_bootstrap.py
@@ -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