1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-06 01:57:40 +00:00
freebsd-ports/lang/pypy/pkg-descr
David Naylor 70b1533c06 lang/pypy(3): update package description.
- PyPy now implements Python 2.7.10
 - PyPy3 requires a slightly different description, and implements Python 3.3.5

Reported by:	marino@
2016-10-26 05:51:06 +00:00

18 lines
829 B
Plaintext

PyPy is a fast, compliant alternative implementation of the Python language
(2.7.10). 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