This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author py.user
Recipients docs@python, py.user
Date 2012-01-10.03:59:54
SpamBayes Score 0.02093664
Marked as misclassified No
Message-id <1326167995.85.0.0875969790457.issue13754@psf.upfronthosting.co.za>
In-reply-to
Content
http://docs.python.org/py3k/library/stdtypes.html#str.ljust

str.ljust(width[, fillchar])¶

    Return the string left justified in a string of length width. Padding is done using the specified fillchar (default is a space). The original string is returned if width is less than len(s).

str.rjust(width[, fillchar])¶

    Return the string right justified in a string of length width. Padding is done using the specified fillchar (default is a space). The original string is returned if width is less than len(s).



"less than len(s)" -> "less than or equal to len(s)"
History
Date User Action Args
2012-01-10 03:59:55py.usersetrecipients: + py.user, docs@python
2012-01-10 03:59:55py.usersetmessageid: <1326167995.85.0.0875969790457.issue13754@psf.upfronthosting.co.za>
2012-01-10 03:59:55py.userlinkissue13754 messages
2012-01-10 03:59:54py.usercreate