The exec Statement and A Python Mystery
A few weeks ago I examined Python code objects using the dis
module. In that post, I showed several examples of executing code objects created at runtime using the exec
statement; here we'll explore compile()
's compliment, exec
, how to invoke it, and some of the quirks of using it.