summary refs log tree commit diff
path: root/changelog.d/9270.misc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixes for PyPy compatibility (#9270)Ivan Shapovalov2021-01-301-0/+1
* synapse.app.base: only call gc.freeze() on CPython gc.freeze() is an implementation detail of CPython garbage collector, and notably does not exist on PyPy. Rather than playing whack-a-mole and skipping the call when under PyPy, simply restrict it to CPython because the whole gc module is implementation-defined. Signed-off-by: Ivan Shapovalov <intelfx@intelfx.name>