From: Serhiy Storchaka Date: Wed, 16 Oct 2013 10:07:53 +0000 (+0300) Subject: Add shorten to __all_ (issues #18585 and #18725). X-Git-Tag: v3.4.0a4~95 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3e4b52875e0162b536817da93f54b1988195c3ab;p=python Add shorten to __all_ (issues #18585 and #18725). --- diff --git a/Lib/textwrap.py b/Lib/textwrap.py index 15a7534e29..24891804dd 100644 --- a/Lib/textwrap.py +++ b/Lib/textwrap.py @@ -7,7 +7,7 @@ import re -__all__ = ['TextWrapper', 'wrap', 'fill', 'dedent', 'indent'] +__all__ = ['TextWrapper', 'wrap', 'fill', 'dedent', 'indent', 'shorten'] # Hardcode the recognized whitespace characters to the US-ASCII # whitespace characters. The main reason for doing this is that in