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 py.user, r.david.murray
Date 2011-06-06.00:18:57
SpamBayes Score 4.315518e-05
Marked as misclassified No
Message-id <1307319538.49.0.391665921325.issue12266@psf.upfronthosting.co.za>
In-reply-to
Content
in http://bugs.python.org/issue12204
Marc-Andre Lemburg wrote:
I suggest to close this ticket as invalid or to add a note
to the documentation explaining how the mapping is applied
(and when not).

this problem is another
str.capitalize makes the first character big, but it doesn't make the rest small
clearing documentation is not enough

lowering works
>>> '\u1ffc'
'ῼ'
>>> '\u1ffc'.lower()
'ῳ'
>>>
History
Date User Action Args
2011-06-06 00:18:58py.usersetrecipients: + py.user, r.david.murray
2011-06-06 00:18:58py.usersetmessageid: <1307319538.49.0.391665921325.issue12266@psf.upfronthosting.co.za>
2011-06-06 00:18:57py.userlinkissue12266 messages
2011-06-06 00:18:57py.usercreate