fork download
  1. def with_x(func):
  2. def ret_func(*args, **kargs):
  3. kargs['x'] = 123
  4. func(*args, **kargs)
  5. return ret_func
  6.  
  7. @with_x
  8. def z(x):
  9. print x
  10.  
  11. z()
Success #stdin #stdout 0.01s 7896KB
stdin
Standard input is empty
stdout
123