diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-08-07 11:17:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-07 11:17:16 (GMT) |
commit | 0a423096e8d8bbe22c0fb0904f7520387a8d4247 (patch) | |
tree | 2012f28ed3dba75da60b7ec8dbb51c4dc6e8cb1f /Misc | |
parent | af441df3ff0eab7bce782011cf702a8a9005da1f (diff) | |
download | cpython-0a423096e8d8bbe22c0fb0904f7520387a8d4247.zip cpython-0a423096e8d8bbe22c0fb0904f7520387a8d4247.tar.gz cpython-0a423096e8d8bbe22c0fb0904f7520387a8d4247.tar.bz2 |
bpo-44856: Possible reference leak in error paths of update_bases() and __build_class__ (GH-27647) (GH-27652)
(cherry picked from commit a40675c659cd8c0699f85ee9ac31660f93f8c2f5)
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-08-07-01-26-12.bpo-44856.9rk3li.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-08-07-01-26-12.bpo-44856.9rk3li.rst b/Misc/NEWS.d/next/Core and Builtins/2021-08-07-01-26-12.bpo-44856.9rk3li.rst new file mode 100644 index 0000000..1111d01 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-08-07-01-26-12.bpo-44856.9rk3li.rst @@ -0,0 +1 @@ +Fix reference leaks in the error paths of ``update_bases()`` and ``__build_class__``. Patch by Pablo Galindo. |