Re: getting caller

2009-02-12 Thread Gabriel Genellina
(If you aren't replying to the original message, please post an entirely *new* one to create a new thread). En Thu, 12 Feb 2009 20:25:57 -0200, Sambit Samal escribió: I need a python script , which binds at a user defind port & sends to other enity , which waits at particular port. The

Re: getting caller

2009-02-12 Thread Gabriel Genellina
En Thu, 12 Feb 2009 19:26:26 -0200, Hamish McKenzie escribió: so I'm trying to wrap some functionality around execfile but don't want to modify the way it works. specifically when you call execfile, it automatically grabs globals and locals from the frame the execfile exists in. so if

Re: getting caller

2009-02-12 Thread Sambit Samal
Hi I am new to Python world I need a python script , which binds at a user defind port & sends to other enity , which waits at particular port. The other enity will respond & Python script should receive that at the defined port The communication will happen over UDP e.g Python Appl IP: 10.1

getting caller

2009-02-12 Thread Hamish McKenzie
so I'm trying to wrap some functionality around execfile but don't want to modify the way it works. specifically when you call execfile, it automatically grabs globals and locals from the frame the execfile exists in. so if I wrap execfile in a function, I need a way to reliably get at the cal