fork download
  1. import dis
  2.  
  3. def f(): a, b = 257, 258
  4.  
  5. dis.dis(f)
Success #stdin #stdout 0.02s 9016KB
stdin
Standard input is empty
stdout
  3           0 LOAD_CONST               3 ((257, 258))
              3 UNPACK_SEQUENCE          2
              6 STORE_FAST               0 (a)
              9 STORE_FAST               1 (b)
             12 LOAD_CONST               0 (None)
             15 RETURN_VALUE