micropython

tests/swap.py

208:eb7b56b0caa3
2009-05-01 Paul Boddie Added extra temporary storage to frames in order to let instantiators expand frames backwards when adding instances to revised frames. Simplified the AdjustFrame instruction, adding such an instruction at the end of instantiator functions. Reorganised the method invocation tests. Added an empty native function for object initialisation.
     1 #!/usr/bin/env python     2      3 a = 1     4 b = 2     5 b, a = a, b     6      7 # vim: tabstop=4 expandtab shiftwidth=4