]> granicus.if.org Git - python/commitdiff
#6238: add fillchar to string.just function family.
authorGeorg Brandl <georg@python.org>
Mon, 8 Jun 2009 16:03:41 +0000 (16:03 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 8 Jun 2009 16:03:41 +0000 (16:03 +0000)
Doc/library/string.rst

index 168d1a5a4d1e3e46f178cabf3e79c88b364f95e6..3231d131e8bc5823879a4e399b39057c793be9ed 100644 (file)
@@ -829,14 +829,15 @@ not be removed until Python 3.0.  The functions defined in this module are:
    Return a copy of *s*, but with lower case letters converted to upper case.
 
 
-.. function:: ljust(s, width)
-              rjust(s, width)
-              center(s, width)
+.. function:: ljust(s, width[, fillchar])
+              rjust(s, width[, fillchar])
+              center(s, width[, fillchar])
 
    These functions respectively left-justify, right-justify and center a string in
    a field of given width.  They return a string that is at least *width*
-   characters wide, created by padding the string *s* with spaces until the given
-   width on the right, left or both sides.  The string is never truncated.
+   characters wide, created by padding the string *s* with the character *fillchar*
+   (default is a space) until the given width on the right, left or both sides.
+   The string is never truncated.
 
 
 .. function:: zfill(s, width)