fork download
import dis

def f():
	return 314
	
dis.dis(f)
Success #stdin #stdout 0.04s 9560KB
stdin
Standard input is empty
stdout
  4           0 LOAD_CONST               1 (314)
              3 RETURN_VALUE