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 eric.smith
Recipients eric.smith, mgruen, r.david.murray
Date 2009-08-14.21:57:40
SpamBayes Score 8.443959e-06
Marked as misclassified No
Message-id <1250287061.98.0.256004638647.issue6705@psf.upfronthosting.co.za>
In-reply-to
Content
Good advice from R. David. In addition, you'll find the help command useful:

>>> help(''.strip)
Help on built-in function strip:

strip(...)
    S.strip([chars]) -> string or unicode
    
    Return a copy of the string S with leading and trailing
    whitespace removed.
    If chars is given and not None, remove characters in chars instead.
    If chars is unicode, S will be converted to unicode before stripping
History
Date User Action Args
2009-08-14 21:57:42eric.smithsetrecipients: + eric.smith, r.david.murray, mgruen
2009-08-14 21:57:41eric.smithsetmessageid: <1250287061.98.0.256004638647.issue6705@psf.upfronthosting.co.za>
2009-08-14 21:57:40eric.smithlinkissue6705 messages
2009-08-14 21:57:40eric.smithcreate