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 arigo
Recipients amaury.forgeotdarc, arigo, barry, ezio.melotti, lemburg, pitrou, python-dev, rhettinger, vstinner
Date 2012-04-24.18:03:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335290592.97.0.370722624003.issue5057@psf.upfronthosting.co.za>
In-reply-to
Content
Sorry to re-open this issue.  The following example shows that it was not fully resolved:

    def f():
        return u'\U00023456abcdef'[3]
    import dis; dis.dis(f)
    print f()

On a wide build it should print 'c' and on a narrow build it should print 'b'.  But if the .pyc file was created on the other platform, it behaves like the other platform would.
History
Date User Action Args
2012-04-24 18:03:13arigosetrecipients: + arigo, lemburg, barry, rhettinger, amaury.forgeotdarc, pitrou, vstinner, ezio.melotti, python-dev
2012-04-24 18:03:12arigosetmessageid: <1335290592.97.0.370722624003.issue5057@psf.upfronthosting.co.za>
2012-04-24 18:03:12arigolinkissue5057 messages
2012-04-24 18:03:12arigocreate