All pastes #2063930 Raw Edit

Stuff

public text v1 · immutable
#2063930 ·published 2011-05-18 21:59 UTC
rendered paste body
>>> def x(**kwa):
...  return kwa
...
>>> j="foo"
>>> k="bar"
>>> x(**{j:k})
{'foo': 'bar'}