Skip to content Skip to sidebar Skip to footer

Reassembling Python Bytecode To The Original Code?

This might be a silly question, but, given the output of, say.. >>> from dis import dis >>> def myfunc(x): ... print x ** 2 ... >>> dis(myfunc) 2

Solution 1:


Post a Comment for "Reassembling Python Bytecode To The Original Code?"