From fdc2c5596e76347e6a979496cd754b464bc7e7a9 Mon Sep 17 00:00:00 2001 From: Nick Coghlan Date: Fri, 6 May 2011 00:02:12 +1000 Subject: [PATCH] Remove trailing whitespace --- Lib/contextlib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/contextlib.py b/Lib/contextlib.py index e90fc4181a3..5ebbbc65838 100644 --- a/Lib/contextlib.py +++ b/Lib/contextlib.py @@ -12,11 +12,11 @@ class ContextDecorator(object): def _recreate_cm(self): """Return a recreated instance of self. - + Allows otherwise one-shot context managers like _GeneratorContextManager to support use as decorators via implicit recreation. - + Note: this is a private interface just for _GCM in 3.2 but will be renamed and documented for third party use in 3.3 """