[Ad]My first participation into open source projec
Here is the introduction of tinypy:
tinypy is a minimalist implementation of python in 64k of code
tinypy 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
Who sponsored tinypy?
Phil Hassey(http://www.philhassey.com/blog/)
My contribution to tinypy:
I have committed two modules to tinypy repositoy: math and random. An
example application borrowed from xscreensaver will be committed in
soon(vines). plus, I'm planning to add re module to tinypy for regular
expression supporting.
Where can you get info about tinypy?
The form website of tinypy is http://www.tinypy.org/
You can get released tinypy and source code from googlecode: http://tinypy.googlecode.com/
The doc of tinypy is organised in wiki: http://code.google.com/p/tinypy/wiki/Index?tm=6
The mailing list of tinypy is powered by google group: http://groups.google.com/group/tinypy
Some miscellaneous doc page: http://groups.google.com/group/tinypy/web
Tinpy's aim:
Lean, but meaning!