From dae0276bb6bc7281d59fb0b8f1aab31634ee80dc Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Thu, 14 Sep 2017 00:35:58 -0700 Subject: bpo-30860: Fix a refleak. (#3567) Resolves bpo-31420. (This was accidentally reverted when in #3565.) --- Python/pystate.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'Python/pystate.c') diff --git a/Python/pystate.c b/Python/pystate.c index 41adf03662..53c1236145 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -97,8 +97,6 @@ PyInterpreterState_New(void) interp->builtins_copy = NULL; interp->tstate_head = NULL; interp->check_interval = 100; - interp->warnoptions = NULL; - interp->xoptions = NULL; interp->num_threads = 0; interp->pythread_stacksize = 0; interp->codec_search_path = NULL; -- cgit v1.2.1