comparison lang/pypy2/pkg-descr @ 65:9e9df3f25e7d

Move the old imported pypy repo into the lang/pypy2 folder
author Franz Glasner <fzglas.hg@dom66.de>
date Fri, 12 Jan 2024 09:18:14 +0100
parents pkg-descr@a92355d5c173
children
comparison
equal deleted inserted replaced
64:4f846c664620 65:9e9df3f25e7d
1 PyPy is a fast, compliant alternative implementation of the Python language
2 (2.7.18). It has several advantages and distinct features:
3
4 - Speed: thanks to its Just-in-Time compiler, Python programs often run faster
5 on PyPy.
6 - Memory usage: large, memory-hungry Python programs might end up taking less
7 space than they do in CPython.
8 - Compatibility: PyPy is highly compatible with existing python code. It
9 supports ctypes and can run popular python libraries like
10 twisted and django.
11 - Sandboxing: PyPy provides the ability to run untrusted code in a fully
12 secure way.
13 - Stackless: PyPy can be configured to run in stackless mode, providing
14 micro-threads for massive concurrency.
15 - As well as other features.