diff options
author | Zackery Spytz <zspytz@gmail.com> | 2018-06-24 03:15:24 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2018-06-24 03:15:24 (GMT) |
commit | ea737751b10fff752aafed0231e8a02b82ba365d (patch) | |
tree | 002552d10224ae5fd6d5a8cbe1d9a02d20431ecd /Misc | |
parent | 0ba9a0b7d19da8b4bd3c13b358d3fd2a5ad16f09 (diff) | |
download | cpython-ea737751b10fff752aafed0231e8a02b82ba365d.zip cpython-ea737751b10fff752aafed0231e8a02b82ba365d.tar.gz cpython-ea737751b10fff752aafed0231e8a02b82ba365d.tar.bz2 |
bpo-33451: Close pyc files before calling PyEval_EvalCode() (GH-7884)
Directly executed pyc files were being kept open longer than necessary.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2018-06-23-15-32-02.bpo-33451.sWN-1l.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-06-23-15-32-02.bpo-33451.sWN-1l.rst b/Misc/NEWS.d/next/Core and Builtins/2018-06-23-15-32-02.bpo-33451.sWN-1l.rst new file mode 100644 index 0000000..202fb38 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2018-06-23-15-32-02.bpo-33451.sWN-1l.rst @@ -0,0 +1 @@ +Close directly executed pyc files before calling ``PyEval_EvalCode()``. |