comparison lang/pypy311/pkg-descr @ 201:aa93453cd531

Build PyPy3 for Python implementation 3.11. BUGS: - pypy39 not yet deleted. - Tests are not working yet.
author Franz Glasner <fzglas.hg@dom66.de>
date Wed, 12 Mar 2025 17:01:42 +0100
parents lang/pypy310/pkg-descr@792fb463576a
children
comparison
equal deleted inserted replaced
200:792fb463576a 201:aa93453cd531
1 PyPy3 is a fast, compliant alternative implementation of the Python 3
2 language (Python 3.11.11). It has several advantages and distinct
3 features:
4
5 - Speed: thanks to its Just-in-Time compiler, Python programs often run faster
6 on PyPy3.
7 - Memory usage: large, memory-hungry Python programs might end up taking less
8 space than they do in CPython.
9 - Compatibility: PyPy3 is highly compatible with existing python code. It
10 supports ctypes and can run popular python libraries like
11 twisted and django.
12 - Sandboxing: PyPy3 provides the ability to run untrusted code in a fully
13 secure way.
14 - Stackless: PyPy3 can be configured to run in stackless mode, providing
15 micro-threads for massive concurrency.
16 - As well as other features.