From 86e1790cad8bb85faad5e91e1a46dc7c6373d20a Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Thu, 8 May 2003 02:12:35 +0000 Subject: Clarify the dedent() example a bit by indenting the input lines unevenly. --- Lib/textwrap.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Lib/textwrap.py') diff --git a/Lib/textwrap.py b/Lib/textwrap.py index 754b037323e..f878e52d19b 100644 --- a/Lib/textwrap.py +++ b/Lib/textwrap.py @@ -325,11 +325,11 @@ def dedent(text): def test(): # end first line with \ to avoid the empty line! s = '''\ - Hey - there + hello + world ''' - print repr(s) # prints ' Hey\n there\n ' - print repr(dedent(s)) # prints 'Hey\nthere\n' + print repr(s) # prints ' hello\n world\n ' + print repr(dedent(s)) # prints 'hello\n world\n' """ lines = text.expandtabs().split('\n') margin = None -- cgit v1.2.3