From: Georg Brandl Date: Fri, 5 Dec 2008 11:34:51 +0000 (+0000) Subject: #4544: add `dedent` to textwrap.__all__. X-Git-Tag: v2.7a1~2579 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3129ea2e0590c2f53e0c89e990d0fd23d3aac88d;p=thirdparty%2FPython%2Fcpython.git #4544: add `dedent` to textwrap.__all__. --- diff --git a/Lib/textwrap.py b/Lib/textwrap.py index 2286c7a272d4..53f2f1bac7c3 100644 --- a/Lib/textwrap.py +++ b/Lib/textwrap.py @@ -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