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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, eanxgeek, effbot
Date 2008-01-14.16:00:24
SpamBayes Score 0.000827645
Marked as misclassified No
Message-id <1200326426.2.0.520547216522.issue1327@psf.upfronthosting.co.za>
In-reply-to
Content
I don't think ceval is the issue here.

> the code has changed a great deal with regards to xmlrpc 
I am not sure to understand what you mean: xmlrpc is mostly written in
python code.

ceval.c is the place where the interpreter executes python code.
PyEval_EvalFrame is the loop that reads and dispatches each python
instruction.
Of course this function is time-critical, but the problem probably is
that too many python code is executed.

I suggest you to use the python-level profiler:
http://docs.python.org/lib/profile-instant.html
This may reveal some interesting things in the xmlrpclib module.
History
Date User Action Args
2008-01-14 16:00:26amaury.forgeotdarcsetspambayes_score: 0.000827645 -> 0.000827645
recipients: + amaury.forgeotdarc, effbot, eanxgeek
2008-01-14 16:00:26amaury.forgeotdarcsetspambayes_score: 0.000827645 -> 0.000827645
messageid: <1200326426.2.0.520547216522.issue1327@psf.upfronthosting.co.za>
2008-01-14 16:00:24amaury.forgeotdarclinkissue1327 messages
2008-01-14 16:00:24amaury.forgeotdarccreate