comparison lang/pypy39/pkg-descr @ 128:9cc467368751

Move and/or copy some files from the old lang/pypy3 to lang/pypy39 and lang/pypy310
author Franz Glasner <fzglas.hg@dom66.de>
date Sun, 14 Jan 2024 12:11:20 +0100
parents lang/pypy3/pkg-descr@3b09db02a788
children 4f64ace8fb9e
comparison
equal deleted inserted replaced
127:9f22a8fb45b6 128:9cc467368751
1 PyPy3 is a fast, compliant alternative implementation of the Python
2 language 3.9.18. 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.