commit | 4300352000beed22fb525ec45fd331918d206528 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@python.org> | Tue Aug 31 18:05:15 2021 +0200 |
committer | GitHub <noreply@github.com> | Tue Aug 31 18:05:15 2021 +0200 |
tree | d85e14e3f00ce829258f890ee2e71698c9adf713 | |
parent | 9a7ec2fcdee2da9e080ca459d4c240776df72567 [diff] |
bpo-45061: Detect Py_DECREF(Py_True) bug (GH-28089) Add a deallocator to the bool type to detect refcount bugs in C extensions which call Py_DECREF(Py_True) or Py_DECREF(Py_False) by mistake.