diff options
author | Yth - Arnaud <yth@ythogtha.org> | 2023-03-17 09:41:33 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-03-18 09:50:18 +0700 |
commit | ba2650278041e4af0a3ae3c32d344d1fcb36b402 (patch) | |
tree | b1b1ad18daf14b1baebdf92a392be5671363d36a /python/PyPy3/README | |
parent | 334ea335780f5e6bd9358c22f4042fdb7b41b87c (diff) |
python/PyPy3: Added (implementation of Python 3 written in Python).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/PyPy3/README')
-rw-r--r-- | python/PyPy3/README | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/python/PyPy3/README b/python/PyPy3/README new file mode 100644 index 0000000000000..05b314dc1e60a --- /dev/null +++ b/python/PyPy3/README @@ -0,0 +1,20 @@ +PyPy is a very compliant implementation of the Python language. PyPy +has several advantages and distinctive features: speed (Just-in-Time +compiler), lower memory usage for large programs, sandboxing and +stackless mode. + +This script builds PyPy implementation of Python 3.9 from sources. +Beware: this takes up a lot of time and about 5Gb of RAM in a 64bit +system. And still 3Gb on a 32bit system. + +Note: This package does conflict with pypy3, overwriting files. + +OPTIONAL: pypy or PyPy, available on SBo. +If pypy2 is installed, from binary repackaging using pypy, or from +sources using PyPy, it'll be used instead of CPython2.7, as it is +twice as fast. +PyPy, even for Python3.9, only builds using a Python2.7 interpreter. +pycparser is required only when using Slackware's CPython2.7 +for building. + +REQUIRES: you need one of pycparser, pypy or PyPy. |