fork(1) download
  1. def f(x):
  2. return x + 1
  3.  
  4. def g(x):
  5. return x + 2
  6.  
  7. print(f.__code__.co_code == g.__code__.co_code)
Success #stdin #stdout 0.02s 9052KB
stdin
Standard input is empty
stdout
True