Segfault with lxml and pypy3.7 7.3.6 rc1
I'm getting a new segfault with the linux64 rc for pypy3.7-7.3.6.
Steps to reproduce in a fresh venv:
pip install lxml==4.6.3
pypy3 -c "import gc ; import lxml; gc.collect(); from lxml.etree import *; gc.collect()"
or in the REPL, this is enough:
import gc
import lxml
from lxml.etree import *
gc.collect()
The same version of lxml works fine with pypy3.7-7.3.5 and the pypy3.8 rc.
I haven't been able to dig further (took me a while to pin it to lxml and gc), but see if I can over the coming days.