Re: [Zope] Debugging a python routine
I use a Script Python that writes to a ZPT. It first reads the ZPT then appends new info; first with a time stamp, container info, and the message. This works from other Script Python objects or ZPTs. It's quick and dirty; but, I've been able to use it for most of my debugging. There are other methods mentioned in any book on Zope that are more powerful. I'm sure you'll receive responses with those suggestions as well. Barry Drake USDA --- John Poltorak wrote:
Can anyone suggest how I would go about debugging a Python routine like this through Zope?
<span tal:define="opts
python:here.lib.parse_file(file=here.members,sepr=',',clone=1)">
<tal:block repeat="opt opts"> <li><a tal:content="python:opt[1]" tal:attributes="href python:opt[0]"></a></li> </tal:block> </span>
-- John
_______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
participants (1)
-
Barry Drake