micropython

docs/related.txt

215:626da7ae6d5e
2009-05-17 Paul Boddie Moved argument checking inside functions, changing the role of CheckFrame and introducing a separate FillDefaults instruction. Introduced a JumpWithFrameDirect instruction which is able, in conjunction with a new code_body_location attribute on Function and Class instances (for function bodies and class instantiator bodies respectively), to skip argument checking for invocations which could be checked at compile-time. Removed the invocation details from the common object structure. Improved various tests.
     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