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 vajrasky
Recipients larry, nadeem.vawda, serhiy.storchaka, vajrasky, zach.ware
Date 2014-02-05.15:25:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391613964.61.0.966188580178.issue20185@psf.upfronthosting.co.za>
In-reply-to
Content
Here is the patch addressing Zachary's review (Thanks!). There are some Zachary's suggestions that I could not implement:

1. float_conjugate_impl,            /* nb_float */
I think this should still be the real function (the parser), not the impl.  The
impl function is really just an implementation detail.

It has to be that way. If I change it to float_conjugate, the compiler will complain. But on other places, we can use the real function.

2. v = list_sort_impl((PyListObject *)v, Py_None, 0);
Considering what I said about not using impl functions at the end of
floatobject.c, it would be nice to avoid it here, but I think that would be a
lot more trouble than it would be worth.

I can not use the real function here, otherwise the compiler will throw error.
History
Date User Action Args
2014-02-05 15:26:05vajraskysetrecipients: + vajrasky, larry, nadeem.vawda, zach.ware, serhiy.storchaka
2014-02-05 15:26:04vajraskysetmessageid: <1391613964.61.0.966188580178.issue20185@psf.upfronthosting.co.za>
2014-02-05 15:26:04vajraskylinkissue20185 messages
2014-02-05 15:26:04vajraskycreate