From: Benjamin Peterson Date: Wed, 1 Jul 2009 01:38:23 +0000 (+0000) Subject: remove nested from __all__ X-Git-Tag: v3.2a1~2918 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=04e40c1b485eda590efe0ad4c6b1733a97836ae3;p=python remove nested from __all__ --- diff --git a/Lib/contextlib.py b/Lib/contextlib.py index d14c07b325..e26d77ae2a 100644 --- a/Lib/contextlib.py +++ b/Lib/contextlib.py @@ -4,7 +4,7 @@ import sys from functools import wraps from warnings import warn -__all__ = ["contextmanager", "nested", "closing"] +__all__ = ["contextmanager", "closing"] class GeneratorContextManager(object): """Helper for @contextmanager decorator."""