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

This commit is contained in:
Georg Brandl 2008-12-05 11:34:51 +00:00
parent e70ff4bf0d
commit 3129ea2e05
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ import string, re
#except NameError: #except NameError:
# (True, False) = (1, 0) # (True, False) = (1, 0)
__all__ = ['TextWrapper', 'wrap', 'fill'] __all__ = ['TextWrapper', 'wrap', 'fill', 'dedent']
# Hardcode the recognized whitespace characters to the US-ASCII # Hardcode the recognized whitespace characters to the US-ASCII
# whitespace characters. The main reason for doing this is that in # whitespace characters. The main reason for doing this is that in