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 Ronny.Pfannschmidt, skrah
Date 2012-07-10.22:24:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1341959066.76.0.949960410787.issue15309@psf.upfronthosting.co.za>
In-reply-to
Content
I see nothing wrong in memory_ass_sub(). In 2.7:

    if (destbuf + bytelen < srcbuf || srcbuf + bytelen < destbuf)
        /* No overlapping */
        memcpy(destbuf, srcbuf, bytelen);
    else
        memmove(destbuf, srcbuf, bytelen);


Other versions use similar idioms.
History
Date User Action Args
2012-07-10 22:24:26skrahsetrecipients: + skrah, Ronny.Pfannschmidt
2012-07-10 22:24:26skrahsetmessageid: <1341959066.76.0.949960410787.issue15309@psf.upfronthosting.co.za>
2012-07-10 22:24:26skrahlinkissue15309 messages
2012-07-10 22:24:25skrahcreate