diff options
author | Brett Cannon <brett@python.org> | 2016-04-08 19:16:16 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-04-08 19:16:16 (GMT) |
commit | 8bd092b50115560a777ad4f9fc656e5ef8c8c89e (patch) | |
tree | 80236742c4cb46cc9e5feb62b18338705ca17339 /Lib/contextlib.py | |
parent | 9e080e0e741dd70cf86500f848eee19cf8b29efa (diff) | |
download | cpython-8bd092b50115560a777ad4f9fc656e5ef8c8c89e.zip cpython-8bd092b50115560a777ad4f9fc656e5ef8c8c89e.tar.gz cpython-8bd092b50115560a777ad4f9fc656e5ef8c8c89e.tar.bz2 |
Normalize whitespace
Diffstat (limited to 'Lib/contextlib.py')
-rw-r--r-- | Lib/contextlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/contextlib.py b/Lib/contextlib.py index 98903bc..6cf112a 100644 --- a/Lib/contextlib.py +++ b/Lib/contextlib.py @@ -27,7 +27,7 @@ class AbstractContextManager(abc.ABC): 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 |