diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2009-04-02 08:57:07 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2009-04-02 08:57:07 +0800 |
commit | 8dbbec21efc26b6c4dd8a52ccce0467a6df4d200 (patch) | |
tree | 05276fdecd04a5df197ec1478629c66c6d95260f /lang/tinypy/pkg-descr | |
parent | 790cc07c33895d46f4c90b2002bd41626dfe5f04 (diff) | |
download | freebsd-ports-gnome-8dbbec21efc26b6c4dd8a52ccce0467a6df4d200.tar.gz freebsd-ports-gnome-8dbbec21efc26b6c4dd8a52ccce0467a6df4d200.tar.zst freebsd-ports-gnome-8dbbec21efc26b6c4dd8a52ccce0467a6df4d200.zip |
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
WWW: http://www.tinypy.org/
PR: 132124
Submitted by: Marcin Cieslak <saper at SYSTEM dot PL>
Diffstat (limited to 'lang/tinypy/pkg-descr')
-rw-r--r-- | lang/tinypy/pkg-descr | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lang/tinypy/pkg-descr b/lang/tinypy/pkg-descr new file mode 100644 index 000000000000..8f4eebe27c5f --- /dev/null +++ b/lang/tinypy/pkg-descr @@ -0,0 +1,19 @@ +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 + +WWW: http://www.tinypy.org/ |