On Wed, Jun 16, 2010 at 3:38 PM, John Nagle <na...@animats.com> wrote:
> That just leaves things in a state where even "sys" and "import"
> are undefined.

Say what?  It works fine for me.

>>> import proxy_mod
>>> proxy_mod.f()
1
>>> proxy_mod.a = 2
setting a=2
>>> proxy_mod.f()
2
>>> proxy_mod.sys
<module 'sys' (built-in)>

Ian
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to