[Python-checkins] cpython: Normalize whitespace

brett.cannon python-checkins at python.org
Fri Apr 8 15:16:27 EDT 2016


https://hg.python.org/cpython/rev/8e8a86f3b236
changeset:   100873:8e8a86f3b236
user:        Brett Cannon <brett at python.org>
date:        Fri Apr 08 12:16:16 2016 -0700
summary:
  Normalize whitespace

files:
  Lib/contextlib.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/contextlib.py b/Lib/contextlib.py
--- a/Lib/contextlib.py
+++ b/Lib/contextlib.py
@@ -27,7 +27,7 @@
         if cls is AbstractContextManager:
             if (any("__enter__" in B.__dict__ for B in C.__mro__) and
                 any("__exit__" in B.__dict__ for B in C.__mro__)):
-                    return True
+                return True
         return NotImplemented
 
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list