Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
436 views
in Technique[技术] by (71.8m points)

closures - Reflect / Inspect closed-over variables in Python

If I have:

def f(x):
  def g(y):
    return x + y
  return g

f2 = f(2)

Is there a way to find the x binding that f2 will use? I looked at inspect but could not tell if some of the frame stuff would apply. In other words, could I define a closed_vars() below:

def closed_vars(anF):
    ... return ...

assert closedVars(f2) == {'x': 2}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You don't have to use the inspect module here.

>>> dict(zip(f2.func_code.co_freevars, (c.cell_contents for c in f2.func_closure)))
{'x': 2}

works in Python 2.7


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...