Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #29675
| Newsgroups | comp.lang.python |
|---|---|
| Date | 2012-09-21 13:20 -0700 |
| References | <mailman.955.1348140460.27098.python-list@python.org> |
| Subject | Re: [Q] How to exec code object with local variables specified? |
| From | 88888 Dihedral <dihedral88888@googlemail.com> |
| Message-ID | <mailman.1035.1348258840.27098.python-list@python.org> (permalink) |
Makoto Kuwata於 2012年9月20日星期四UTC+8下午7時27分40秒寫道:
> Hi,
>
>
>
> Is it possible to run code object with local variables specified?
>
> I'm trying the following code but not work:
>
>
>
> def fn():
>
> x = 1
>
> y = 2
>
> localvars = {'x': 0}
>
> exec(fn.func_code, globals(), localvars)
>
> print(localvars)
>
> ## what I expected is: {'x': 1, 'y': 2}
>
> ## but actual is: {'x': 0}
>
>
>
> Python: 2.7.3
>
> OS: MacOS X
>
>
>
> --
>
> regards,
>
> makoto kuwata
Do you plan to write an IDE for python scrits ?
I have seen a lot abusiosns of spawns or pipes of mutlti-processes,
and now the exec part again.
I think the sources of Doctor Python and IDLE were available
years ago for showing off python's capabilities in developing an IDE.
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
[Q] How to exec code object with local variables specified? Makoto Kuwata <kwa@kuwata-lab.com> - 2012-09-20 20:27 +0900 Re: [Q] How to exec code object with local variables specified? 88888 Dihedral <dihedral88888@googlemail.com> - 2012-09-21 13:20 -0700 Re: [Q] How to exec code object with local variables specified? 88888 Dihedral <dihedral88888@googlemail.com> - 2012-09-21 13:20 -0700
csiph-web