diff options
author | Georg Brandl <georg@python.org> | 2008-12-05 11:34:51 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-12-05 11:34:51 (GMT) |
commit | 3129ea2e0590c2f53e0c89e990d0fd23d3aac88d (patch) | |
tree | 2c04e78811092859b56ab3d9e8148b3d2704feb2 | |
parent | e70ff4bf0d1761773d7cc6842450d162f49cfe3a (diff) | |
download | cpython-3129ea2e0590c2f53e0c89e990d0fd23d3aac88d.zip cpython-3129ea2e0590c2f53e0c89e990d0fd23d3aac88d.tar.gz cpython-3129ea2e0590c2f53e0c89e990d0fd23d3aac88d.tar.bz2 |
#4544: add `dedent` to textwrap.__all__.
-rw-r--r-- | Lib/textwrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/textwrap.py b/Lib/textwrap.py index 2286c7a..53f2f1b 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 |