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 SilentGhost, ezio.melotti, mrabarnett, serhiy.storchaka, vstinner
Date 2016-11-18.11:13:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAMpsgwaCcFBUiWpB9-aVhNewisYYxwPGK1KaAAcmzxht5Ec4bA@mail.gmail.com>
In-reply-to <1479461726.82.0.899215201384.issue28727@psf.upfronthosting.co.za>
Content
> '[abc]' and '[cba]' are compiled to the same code. Do we want to handle them as equal?

Comparison must be fast. If the comparison is just memcmp(code1,
code2, codesize), it's ok.

I agree that we must put a similar somewhere to say that some parts
are implementation details. Maybe split the test in two parts, and
mark the second part with @cpython_only.
History
Date User Action Args
2016-11-18 11:13:45vstinnersetrecipients: + vstinner, ezio.melotti, mrabarnett, SilentGhost, serhiy.storchaka
2016-11-18 11:13:45vstinnerlinkissue28727 messages
2016-11-18 11:13:44vstinnercreate