diff options
author | dbn <dbn@FreeBSD.org> | 2013-08-12 01:27:22 +0800 |
---|---|---|
committer | dbn <dbn@FreeBSD.org> | 2013-08-12 01:27:22 +0800 |
commit | f895f9093ea6055abaa11fdcea54a3e8c26d1d9d (patch) | |
tree | f340ccec3fdd39b24c04280b38bc6ba2ba6ca8f7 /lang/pypy3-devel/pkg-descr | |
parent | 3e718a0a1f5e9af557d34a084bf9dc1aff53c40c (diff) | |
download | freebsd-ports-gnome-f895f9093ea6055abaa11fdcea54a3e8c26d1d9d.tar.gz freebsd-ports-gnome-f895f9093ea6055abaa11fdcea54a3e8c26d1d9d.tar.zst freebsd-ports-gnome-f895f9093ea6055abaa11fdcea54a3e8c26d1d9d.zip |
Introducing lang/pypy3-devel version 2.1.b1.
Highlights
- The first release of PyPy3: support for Python 3, targetting CPython 3.2.3!
- There are some known issues including performance regressions (issues
#1540 & #1541) slated to be resolved before the final release.
Diffstat (limited to 'lang/pypy3-devel/pkg-descr')
-rw-r--r-- | lang/pypy3-devel/pkg-descr | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lang/pypy3-devel/pkg-descr b/lang/pypy3-devel/pkg-descr new file mode 100644 index 000000000000..036119c013df --- /dev/null +++ b/lang/pypy3-devel/pkg-descr @@ -0,0 +1,17 @@ +PyPy is a fast, compliant alternative implementation of the Python language +(2.7.1). It has several advantages and distinct features: + + - Speed: thanks to its Just-in-Time compiler, Python programs often run faster + on PyPy. + - Memory usage: large, memory-hungry Python programs might end up taking less + space than they do in CPython. + - Compatibility: PyPy is highly compatible with existing python code. It + supports ctypes and can run popular python libraries like + twisted and django. + - Sandboxing: PyPy provides the ability to run untrusted code in a fully + secure way. + - Stackless: PyPy can be configured to run in stackless mode, providing + micro-threads for massive concurrency. + - As well as other features. + +WWW: http://pypy.org/ |