fork(1) download
  1. import dis
  2.  
  3. def f():
  4. "a"
  5. "bunch"
  6. "of"
  7. "strings"
  8. "that"
  9. "get"
  10. "optimized"
  11. "out"
  12.  
  13. dis.dis(f)
Success #stdin #stdout 0.01s 29712KB
stdin
Standard input is empty
stdout
 11           0 LOAD_CONST               0 (None)
              3 RETURN_VALUE