Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #29548

[Q] How to exec code object with local variables specified?

Date 2012-09-20 20:27 +0900
Subject [Q] How to exec code object with local variables specified?
From Makoto Kuwata <kwa@kuwata-lab.com>
Newsgroups comp.lang.python
Message-ID <mailman.955.1348140460.27098.python-list@python.org> (permalink)

Show all headers | View raw


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

Back to comp.lang.python | Previous | NextNext in thread | Find similar | Unroll thread


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