mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
bpo-30860: Fix a refleak. (#3506)
* Drop warnoptions from PyInterpreterState. * Drop xoptions from PyInterpreterState. * Don't set warnoptions and _xoptions again. * Decref after adding to sys.__dict__. * Drop an unused macro. * Check sys.xoptions *before* we delete it.
This commit is contained in:
parent
ba6d5d1def
commit
8728018624
7 changed files with 47 additions and 43 deletions
|
@ -60,8 +60,6 @@ typedef struct _is {
|
|||
|
||||
/* Used in Python/sysmodule.c. */
|
||||
int check_interval;
|
||||
PyObject *warnoptions;
|
||||
PyObject *xoptions;
|
||||
|
||||
/* Used in Modules/_threadmodule.c. */
|
||||
long num_threads;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue