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 famart
Recipients famart
Date 2010-04-08.17:05:30
SpamBayes Score 0.0018564564
Marked as misclassified No
Message-id <1270746333.31.0.107951036323.issue8347@psf.upfronthosting.co.za>
In-reply-to
Content
When the following is run:
  s='the Los Angeles Symphony';
  s.capitalize();
it displays 'The los angeles symphony'
instead of 'The Los Angeles Symphony'

the str.capitalize() should only deal with the first letter, not lower-case the rest of the letters. The manual correctly describes this, but the actual behavior is not consistent with this description.
History
Date User Action Args
2010-04-08 17:05:33famartsetrecipients: + famart
2010-04-08 17:05:33famartsetmessageid: <1270746333.31.0.107951036323.issue8347@psf.upfronthosting.co.za>
2010-04-08 17:05:31famartlinkissue8347 messages
2010-04-08 17:05:30famartcreate