remove nested from __all__

This commit is contained in:
Benjamin Peterson 2009-07-01 01:38:23 +00:00
parent c2331dbe45
commit 04e40c1b48

View file

@ -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."""