cpython
cpython copied to clipboard
gh-125789: fix side-effects in `asyncio` callback scheduling methods
This is a proposal for fixing the side-effects that could arise from Py_EQ
. Similar to the patch where I fixed OrderedDict.__eq__
, I did not modify the pure Python implementation but I can do it (I don't think we want to align both implementations; we just don't want the interpreter to crash and I don't think we can make it crash using the pure Python implementation only).
- Issue: gh-125789