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 methane
Recipients Arfrever, ezio.melotti, josh.r, methane, rhettinger, serhiy.storchaka, vstinner, wbolster
Date 2018-07-06.07:47:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1530863264.94.0.56676864532.issue23493@psf.upfronthosting.co.za>
In-reply-to
Content
In C version, we don't use key func.

    items = PyMapping_Items(dct);
    if (items == NULL)
        goto bail;
    if (s->sort_keys && PyList_Sort(items) < 0) {

Like that, how about removing key function completely?
History
Date User Action Args
2018-07-06 07:47:45methanesetrecipients: + methane, rhettinger, vstinner, ezio.melotti, Arfrever, serhiy.storchaka, wbolster, josh.r
2018-07-06 07:47:44methanesetmessageid: <1530863264.94.0.56676864532.issue23493@psf.upfronthosting.co.za>
2018-07-06 07:47:44methanelinkissue23493 messages
2018-07-06 07:47:44methanecreate