Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 603 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 603 Bytes

PyconUS 2024/EuroPython 2024

pointers-in-python

git clone --depth 1 -b v3.9.0 https://github.com/python/cpython
cd cpython
git checkout v3.9.0

docker setup

docker pull wolframalph/cpython-env
docker run --rm -d --name=cpython --volume=$(pwd):/workspaces/cpython -w /workspaces/cpython --platform=linux/amd64 wolframalph/cpython-env sleep infinity
docker exec -it cpython /bin/bash

get patches

git clone https://github.com/WolframAlph/pointers-in-python
cp -r pointers-in-python/patches/ patches
rm -rf pointers-in-python/

compile python

./configure --with-pydebug
make -j