All pastes #2121667 Raw Edit

Mine

public text v1 · immutable
#2121667 ·published 2012-02-26 10:31 UTC
rendered paste body
import profile

def foo(bar=None):
  print("bar = %s" % bar)

profile.runctx("foo", globals(), {'bar': 'good'})
profile.run("foo('great')")