summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/unboundlocal.py
Commit message (Collapse)AuthorAge
* py: Make all LOAD_FAST ops check for unbound local.Damien George2014-04-12
This is necessary to catch all cases where locals are referenced before assignment. We still keep the _0, _1, _2 versions of LOAD_FAST to help reduced the byte code size in RAM. Addresses issue #457.