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 neologix
Recipients neologix, rpointel
Date 2011-05-25.20:54:40
SpamBayes Score 0.0046849134
Marked as misclassified No
Message-id <1306356880.73.0.198304081561.issue12181@psf.upfronthosting.co.za>
In-reply-to
Content
It's an unaligned access:

addr=0x21007b72c

  case T_LONGLONG:
      v = PyLong_FromLongLong(*(PY_LONG_LONG *)addr);

sizeof(PY_LONG_LONG) == 8, but addr % 8 = 0x21007b72c % 8 == 4
History
Date User Action Args
2011-05-25 20:54:40neologixsetrecipients: + neologix, rpointel
2011-05-25 20:54:40neologixsetmessageid: <1306356880.73.0.198304081561.issue12181@psf.upfronthosting.co.za>
2011-05-25 20:54:40neologixlinkissue12181 messages
2011-05-25 20:54:40neologixcreate