commit | 301e3cc8a5bc68c5347ab6ac6f83428000d31ab2 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Thu May 24 15:19:29 2018 +0300 |
committer | GitHub <noreply@github.com> | Thu May 24 15:19:29 2018 +0300 |
tree | 3913f8bed57a749dc1940153c7d0ffc386008982 | |
parent | 03c0d2e1f272c7c6df5f6066a6abc222ff61073a [diff] |
bpo-33622: Fix issues with handling errors in the GC. (GH-7078) * Fixed a leak when the GC fails to add an object with __del__ into the gc.garbage list. * PyGC_Collect() can now be called when an exception is set and preserves it. * Fixed an undefined behavior with comparing a dead pointer with NULL.