2009-04-02 02:57:07 +02:00
|
|
|
tinypy is a minimalist implementation of python in 64k of code
|
|
|
|
|
|
|
|
it includes a whole heap of features:
|
|
|
|
|
|
|
|
* parser and bytecode compiler written in tinypy
|
|
|
|
* fully bootstrapped
|
|
|
|
* luaesque virtual machine with garbage collection written in C
|
|
|
|
it's "stackless" sans any "stackless" features
|
|
|
|
* cross-platform :) it runs under windows / linux / macosx
|
|
|
|
* a fairly decent subset of python
|
|
|
|
o classes and single inheritance
|
|
|
|
o functions with variable or keyword arguments
|
|
|
|
o strings, lists, dicts, numbers
|
|
|
|
o modules, list comprehensions
|
|
|
|
o exceptions with full traceback
|
|
|
|
o some builtins
|
|
|
|
* batteries not included -- yet
|
|
|
|
|
2014-06-21 13:10:01 +02:00
|
|
|
WWW: http://www.tinypy.org/
|