◐ Shell
clean mode source ↗

gh-105751: test_ctypes avoids the operator module by vstinner · Pull Request #105797 · python/cpython

* Replace operator.delitem(obj, index) with "del obj[index]".
* Replace operator.setitem(obj, index, value) with
  "obj[index] = value".
* Replace delattr(obj, "attr) with "del obj.attr".
* Replace grc() with sys.getrefcount() for readability.

carljm added a commit to carljm/cpython that referenced this pull request

Jun 15, 2023