[Zope] External method and stdout

2000-09-05 Thread Sven Hohage
Hallo, that's theproblem: I've made an external method which is working with lists and should return the result to Zope. The python code is working very well, but is sending everything to sys.stdout( I'musing the print-statement).How do I convince Zope to print the result on the html-page.

Re: [Zope] External method and stdout

2000-09-05 Thread Kapil Thangavelu
Andreas Pauley wrote: For some reason you have to "return" everything that should be available to zope. You can return a sequence and loop through it with DTML or you can build a variable with everything you want to display and then return the variable. I have no idea why this is so, and