diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-07-01 01:38:23 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-07-01 01:38:23 (GMT) |
commit | 04e40c1b485eda590efe0ad4c6b1733a97836ae3 (patch) | |
tree | 29ef9aecabf48dd34f4fe943a103be4e1f36b240 /Lib/contextlib.py | |
parent | c2331dbe4530ad479c31e04e7ff6697397193500 (diff) | |
download | cpython-04e40c1b485eda590efe0ad4c6b1733a97836ae3.zip cpython-04e40c1b485eda590efe0ad4c6b1733a97836ae3.tar.gz cpython-04e40c1b485eda590efe0ad4c6b1733a97836ae3.tar.bz2 |
remove nested from __all__
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 d14c07b..e26d77a 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.""" |