0001 """This is a test""" 0002 0003 # Import the name nested_scopes twice to trigger SF bug #407394 (regression). 0004 from __future__ import nested_scopes, nested_scopes 0005 0006 def f(x): 0007 def g(y): 0008 return x + y 0009 return g 0010 0011 result = f(2)(4) 0012
Generated by PyXR 0.9.4