diff options
| author | Ivan Shapovalov <intelfx@intelfx.name> | 2021-01-30 20:22:05 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-30 17:22:05 +0000 |
| commit | 13c7ab81817df8f6028668ca318c6de1ad498313 (patch) | |
| tree | 66279546dfcc814618e956cecabba73f219c15c6 | |
| parent | Ratelimit invites by room and target user (#9258) (diff) | |
| download | synapse-13c7ab81817df8f6028668ca318c6de1ad498313.tar.xz | |
Fixes for PyPy compatibility (#9270)
* 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>
| -rw-r--r-- | changelog.d/9270.misc | 1 | ||||
| -rw-r--r-- | synapse/app/_base.py | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/changelog.d/9270.misc b/changelog.d/9270.misc new file mode 100644 |
