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 skrah
Recipients brian.curtin, loewis, nadeem.vawda, skrah, steve.dower, vstinner
Date 2014-06-18.11:35:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403091349.39.0.0264563882388.issue15993@psf.upfronthosting.co.za>
In-reply-to
Content
> The two issues were unrelated - the 'invalid filter ID'
> (4611686018427387905 == 0x40000000_00000001) is the correct
> value but the wrong branch in the switch was taken, leading
> to the error message.

Unfortunately I don't have a Visual Studio setup right now.

It seems to me that at the time the wrong branch is taken, f->id
could be in the registers in the wrong order (same as in msg170985),
but when the error message is printed, the value is read from
memory.  This is just a guess of course.


As Martin, I'm uncomfortable that the memoryview issue no longer
appears, but this one still does.


I've attached an alternative version of PyLong_AsUnsignedLongLong()
that is just intended for testing the compiler.


If the optimizer does whole progam optimization, it might choke
on _PyLong_AsByteArray().
History
Date User Action Args
2014-06-18 11:35:49skrahsetrecipients: + skrah, loewis, vstinner, nadeem.vawda, brian.curtin, steve.dower
2014-06-18 11:35:49skrahsetmessageid: <1403091349.39.0.0264563882388.issue15993@psf.upfronthosting.co.za>
2014-06-18 11:35:49skrahlinkissue15993 messages
2014-06-18 11:35:49skrahcreate