Message357767
| Author | pablogsal |
|---|---|
| Recipients | pablogsal, vstinner |
| Date | 2019-12-03.22:02:04 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1575410524.5.0.227977856959.issue38962@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
This patch (which is wrong) fixes the reference issues: diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index cce4783bc1..c354af18db 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -1276,6 +1276,7 @@ finalize_interp_clear(PyThreadState *tstate) _PyExc_Fini(); } + PyGC_Collect(); _PyGC_Fini(tstate); } This suggests that the per-interpreter gc does not play well with the refleak checker. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2019-12-03 22:02:04 | pablogsal | set | recipients: + pablogsal, vstinner |
| 2019-12-03 22:02:04 | pablogsal | set | messageid: <1575410524.5.0.227977856959.issue38962@roundup.psfhosted.org> |
| 2019-12-03 22:02:04 | pablogsal | link | issue38962 messages |
| 2019-12-03 22:02:04 | pablogsal | create | |