Skip to content
Snippets Groups Projects
Commit 879b763c authored by Alex Pearce's avatar Alex Pearce Committed by kreczko
Browse files

Use Python 3 compatible exec.

Python 2 compatible:

    exec "some statement" in globals_dict, locals_dict

Python 2 and 3 compatible:

    exec("some statement", globals_dict, locals_dict)
parent aeada68b
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment