diff options
author | Larry Hastings <larry@hastings.org> | 2014-02-11 00:15:46 -0800 |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2014-02-11 00:15:46 -0800 |
commit | 3f99504c08ebca685271c32289f8907bc456e1fc (patch) | |
tree | deb0b2d3284cec1323ad0da34f96107ea3f64576 /Python/pystate.c | |
parent | 4cce8f2f40cc15235f44b3a47fec0444ed75e9fe (diff) | |
parent | 06847d9c8c30715c077e083de1c511e399af75f1 (diff) | |
download | cpython-git-3f99504c08ebca685271c32289f8907bc456e1fc.tar.gz |
Merge Python 3.4.0rc1 release branch.
Diffstat (limited to 'Python/pystate.c')
-rw-r--r-- | Python/pystate.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/pystate.c b/Python/pystate.c index 19fceb7127..2ac2fd5274 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -72,6 +72,7 @@ PyInterpreterState_New(void) interp->modules_by_index = NULL; interp->sysdict = NULL; interp->builtins = NULL; + interp->builtins_copy = NULL; interp->tstate_head = NULL; interp->codec_search_path = NULL; interp->codec_search_cache = NULL; @@ -115,6 +116,7 @@ PyInterpreterState_Clear(PyInterpreterState *interp) Py_CLEAR(interp->modules_by_index); Py_CLEAR(interp->sysdict); Py_CLEAR(interp->builtins); + Py_CLEAR(interp->builtins_copy); Py_CLEAR(interp->importlib); } |