[Python-checkins] r67575 - python/trunk/Lib/textwrap.py

georg.brandl python-checkins at python.org
Fri Dec 5 12:34:51 CET 2008


Author: georg.brandl
Date: Fri Dec  5 12:34:51 2008
New Revision: 67575

Log:
#4544: add `dedent` to textwrap.__all__.


Modified:
   python/trunk/Lib/textwrap.py

Modified: python/trunk/Lib/textwrap.py
==============================================================================
--- python/trunk/Lib/textwrap.py	(original)
+++ python/trunk/Lib/textwrap.py	Fri Dec  5 12:34:51 2008
@@ -17,7 +17,7 @@
 #except NameError:
 #    (True, False) = (1, 0)
 
-__all__ = ['TextWrapper', 'wrap', 'fill']
+__all__ = ['TextWrapper', 'wrap', 'fill', 'dedent']
 
 # Hardcode the recognized whitespace characters to the US-ASCII
 # whitespace characters.  The main reason for doing this is that in


More information about the Python-checkins mailing list