2009-05-30 | Paul Boddie | raw annotate files changeset graph | Changed instantiator invocation reserving a frame slot regardless of whether the target is known in advance. In the instantiator, the first frame slot is then overwritten with the new instance, and the RecoverFrame instruction is no longer required. Instead, a new JumpInFrame instruction maintains the existing locals, jumping to the initialiser method for the class. Updated various tests, renaming and enhancing the classes test. |
1 Shed Skin imposes various restrictions in order to facilitate compilation to 2 C++: 3 4 http://shedskin.googlecode.com/ 5 6 RPython imposes different restrictions in order to facilitate compilation to 7 other languages: 8 9 http://codespeak.net/pypy/dist/pypy/doc/coding-guide.html#restricted-python 10 11 CapPython limits attribute access in order to facilitate code verification: 12 13 http://mail.python.org/pipermail/python-dev/2008-September/082475.html