(original) (raw)
changeset: 86386:0bd257cd3e88 user: Serhiy Storchaka storchaka@gmail.com date: Wed Oct 16 13:07:53 2013 +0300 files: Lib/textwrap.py description: Add shorten to __all_ (issues #18585 and #18725). diff -r add40e9f7cbe -r 0bd257cd3e88 Lib/textwrap.py --- a/Lib/textwrap.py Wed Oct 16 12:46:28 2013 +0300 +++ b/Lib/textwrap.py Wed Oct 16 13:07:53 2013 +0300 @@ -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 /storchaka@gmail.com