Skip to content Skip to sidebar Skip to footer
Showing posts with the label Bytecode

Reassembling Python Bytecode To The Original Code?

This might be a silly question, but, given the output of, say.. >>> from dis import dis &g… Read more Reassembling Python Bytecode To The Original Code?

How Does Python Read And Interpret Source Files?

Say I run a Python (2.7, though I'm not sure that makes a difference here) script. Instead of t… Read more How Does Python Read And Interpret Source Files?

Creating A New Language Within The Python Virtual Machine

Is it possible to create a new language for the Python Virtual Machine? I was reading over http://l… Read more Creating A New Language Within The Python Virtual Machine

How Does Python Read And Interpret Source Files?

Say I run a Python (2.7, though I'm not sure that makes a difference here) script. Instead of t… Read more How Does Python Read And Interpret Source Files?

Python: LOAD_FAST Vs. LOAD_DEREF With Inplace Addition

Last Friday I went to a job interview and had to answer the following question: why does this code … Read more Python: LOAD_FAST Vs. LOAD_DEREF With Inplace Addition

Compare Whether Two Python Files Result In Same Byte Code (are Code Wise Identical)

We're doing some code cleanup. The cleanup is only about formatting (if an issue, then let'… Read more Compare Whether Two Python Files Result In Same Byte Code (are Code Wise Identical)