[Python-checkins] r73733 - python/branches/py3k/Lib/contextlib.py

benjamin.peterson python-checkins at python.org
Wed Jul 1 03:38:24 CEST 2009


Author: benjamin.peterson
Date: Wed Jul  1 03:38:23 2009
New Revision: 73733

Log:
remove nested from __all__

Modified:
   python/branches/py3k/Lib/contextlib.py

Modified: python/branches/py3k/Lib/contextlib.py
==============================================================================
--- python/branches/py3k/Lib/contextlib.py	(original)
+++ python/branches/py3k/Lib/contextlib.py	Wed Jul  1 03:38:23 2009
@@ -4,7 +4,7 @@
 from functools import wraps
 from warnings import warn
 
-__all__ = ["contextmanager", "nested", "closing"]
+__all__ = ["contextmanager", "closing"]
 
 class GeneratorContextManager(object):
     """Helper for @contextmanager decorator."""


More information about the Python-checkins mailing list