Browse Source

bpo-35451: Fix reference counting for sys.warnoptions and sys._xoptions. (GH-11063)

pull/11075/head
Serhiy Storchaka 8 years ago
committed by GitHub
parent
commit
72ff7b4c00
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Python/sysmodule.c

2
Python/sysmodule.c

@ -1774,7 +1774,6 @@ get_warnoptions(void)
* call optional for embedding applications, thus making this
* reachable again.
*/
Py_XDECREF(warnoptions);
warnoptions = PyList_New(0);
if (warnoptions == NULL)
return NULL;
@ -1864,7 +1863,6 @@ get_xoptions(void)
* call optional for embedding applications, thus making this
* reachable again.
*/
Py_XDECREF(xoptions);
xoptions = PyDict_New();
if (xoptions == NULL)
return NULL;

Loading…
Cancel
Save