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 terry.reedy
Recipients georg.brandl, terry.reedy, thp
Date 2008-11-22.02:37:11
SpamBayes Score 0.000256647
Marked as misclassified No
Message-id <1227321433.45.0.273360739595.issue4361@psf.upfronthosting.co.za>
In-reply-to
Content
In rc3 also: The problem is partial update:

DESCRIPTION
    Public module variables:
    
    whitespace -- a string containing all characters considered whitespace
    lowercase -- a string containing all characters considered lowercase
letters
    uppercase -- a string containing all characters considered uppercase
letters
    letters -- a string containing all characters considered letters
...
DATA
    ascii_letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
    ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz'
    ascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'

The latter is indeed correct:
>>> dir(string)
[..., 'ascii_letters', 'ascii_lowercase', 'ascii_uppercase', ...]
History
Date User Action Args
2008-11-22 02:37:13terry.reedysetrecipients: + terry.reedy, georg.brandl, thp
2008-11-22 02:37:13terry.reedysetmessageid: <1227321433.45.0.273360739595.issue4361@psf.upfronthosting.co.za>
2008-11-22 02:37:12terry.reedylinkissue4361 messages
2008-11-22 02:37:11terry.reedycreate