@@ -21,7 +21,8 @@ functions should be good enough; otherwise, you should use an instance of
21
21
subsequent_indent="", expand_tabs=True, \
22
22
replace_whitespace=True, fix_sentence_endings=False, \
23
23
break_long_words=True, drop_whitespace=True, \
24
- break_on_hyphens=True, tabsize=8, max_lines=None)
24
+ break_on_hyphens=True, tabsize=8, max_lines=None, \
25
+ placeholder=' [...]')
25
26
26
27
Wraps the single paragraph in *text * (a string) so every line is at most
27
28
*width * characters long. Returns a list of output lines, without final
@@ -39,7 +40,7 @@ functions should be good enough; otherwise, you should use an instance of
39
40
replace_whitespace=True, fix_sentence_endings=False, \
40
41
break_long_words=True, drop_whitespace=True, \
41
42
break_on_hyphens=True, tabsize=8, \
42
- max_lines=None)
43
+ max_lines=None, placeholder=' [...]' )
43
44
44
45
Wraps the single paragraph in *text *, and returns a single string containing the
45
46
wrapped paragraph. :func: `fill ` is shorthand for ::
0 commit comments