]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#4544: add `dedent` to textwrap.__all__.
authorGeorg Brandl <georg@python.org>
Fri, 5 Dec 2008 11:34:51 +0000 (11:34 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 5 Dec 2008 11:34:51 +0000 (11:34 +0000)
Lib/textwrap.py

index 2286c7a272d4939f1eb042e1d1e7f05e1cec3806..53f2f1bac7c34534c5569112b60e65a9c71b1dd3 100644 (file)
@@ -17,7 +17,7 @@ import string, re
 #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