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
Date 2011-05-29.04:49:19
SpamBayes Score 0.00080688036
Marked as misclassified No
Message-id <1306644560.56.0.146552718337.issue12204@psf.upfronthosting.co.za>
In-reply-to
Content
specification

1)
str.upper()¶

    Return a copy of the string converted to uppercase.

2)
str.isupper()¶

    Return true if all cased characters in the string are uppercase and there is at least one cased character, false otherwise. Cased characters are those with general category property being one of “Lu”, “Ll”, or “Lt” and uppercase characters are those with general category property “Lu”.

>>> '\u1ff3'
'ῳ'
>>> '\u1ff3'.islower()
True
>>> '\u1ff3'.upper()
'ῼ'
>>> '\u1ff3'.upper().isupper()
False
>>>
History
Date User Action Args
2011-05-29 04:49:20py.usersetrecipients: + py.user
2011-05-29 04:49:20py.usersetmessageid: <1306644560.56.0.146552718337.issue12204@psf.upfronthosting.co.za>
2011-05-29 04:49:19py.userlinkissue12204 messages
2011-05-29 04:49:19py.usercreate