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 vstinner
Recipients ezio.melotti, pitrou, vstinner
Date 2011-10-04.17:11:58
SpamBayes Score 2.2417493e-05
Marked as misclassified No
Message-id <1317748318.81.0.992039803801.issue13100@psf.upfronthosting.co.za>
In-reply-to
Content
The following comment is wrong, 

    except IndexError:
        # non-BMP characters; XXX now they should work
        return charset

sys.maxunicode != 65535 is now always true in Python 3.3

        if sys.maxunicode != 65535:
            # XXX: negation does not work with big charsets
            # XXX2: now they should work, but removing this will make the
            # charmap 17 times bigger
            return charset

See the related commit: f39b26ca7f3d (from issue #13054).
History
Date User Action Args
2011-10-04 17:11:58vstinnersetrecipients: + vstinner, pitrou, ezio.melotti
2011-10-04 17:11:58vstinnersetmessageid: <1317748318.81.0.992039803801.issue13100@psf.upfronthosting.co.za>
2011-10-04 17:11:58vstinnerlinkissue13100 messages
2011-10-04 17:11:58vstinnercreate