Re: Printing Out Called Function Calls

2009-03-31 Thread Victor Subervi
> > change server famrs? > Really. But I imagine they are all trash for the price I pay. > > use eval() or exec()? > eval worked, exec no. Thanks! > > andrew > > -- http://mail.python.org/mailman/listinfo/python-list

Re: Printing Out Called Function Calls

2009-03-31 Thread andrew cooke
Victor Subervi wrote: > Hi; > Due to screwy problems at my server farm that they refuse to fix, I need > to > call lines that execute code from other files, like this: > theContent += `tidBits[i][y][:-2]` > but what that returns is this (as an example): > tableTop(348,180) > when I need it to e

Printing Out Called Function Calls

2009-03-31 Thread Victor Subervi
Hi; Due to screwy problems at my server farm that they refuse to fix, I need to call lines that execute code from other files, like this: theContent += `tidBits[i][y][:-2]` but what that returns is this (as an example): tableTop(348,180) when I need it to execute the fn tableTop. What do? TIA,