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 rhettinger
Recipients Anoop.Thomas.Mathew, jcea, pconnell, rhettinger, scoder, serhiy.storchaka
Date 2013-09-30.04:28:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1380515327.52.0.565167209376.issue18594@psf.upfronthosting.co.za>
In-reply-to
Content
A C-accelerator should ALWAYS be able to beat a pure python version if it does the same steps but without the overhead of the eval-loop.  And in special cases such as type(self)==Counter, it can do much better.

To resolve this report, the C accelerator needs to be fixed.  As Stefan pointed-out, the fast-path isn't being triggered because of PyDict_CheckExact test.  And, the fallback path can be sped-up as well (by doing the same steps in C as are being done with the pure python code).
History
Date User Action Args
2013-09-30 04:28:47rhettingersetrecipients: + rhettinger, jcea, scoder, serhiy.storchaka, pconnell, Anoop.Thomas.Mathew
2013-09-30 04:28:47rhettingersetmessageid: <1380515327.52.0.565167209376.issue18594@psf.upfronthosting.co.za>
2013-09-30 04:28:47rhettingerlinkissue18594 messages
2013-09-30 04:28:47rhettingercreate