diff options
author | Oren Milman <orenmn@gmail.com> | 2017-09-19 11:39:47 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-09-19 11:39:47 (GMT) |
commit | 9974e1bcf3d0cec9b38b39b39b7ec8a1ebd9ef54 (patch) | |
tree | 5cd22abadd721260709dcd9e43ab6a173107f1e0 /Misc | |
parent | 6db7033192cd537ca987a65971acb01206c3ba82 (diff) | |
download | cpython-9974e1bcf3d0cec9b38b39b39b7ec8a1ebd9ef54.zip cpython-9974e1bcf3d0cec9b38b39b39b7ec8a1ebd9ef54.tar.gz cpython-9974e1bcf3d0cec9b38b39b39b7ec8a1ebd9ef54.tar.bz2 |
bpo-31315: Fix an assertion failure in imp.create_dynamic(), when spec.name is not a string. (#3257)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2017-09-01-00-40-58.bpo-31315.ZX20bl.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-09-01-00-40-58.bpo-31315.ZX20bl.rst b/Misc/NEWS.d/next/Core and Builtins/2017-09-01-00-40-58.bpo-31315.ZX20bl.rst new file mode 100644 index 0000000..d13badb --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2017-09-01-00-40-58.bpo-31315.ZX20bl.rst @@ -0,0 +1,2 @@ +Fix an assertion failure in imp.create_dynamic(), when spec.name is not a +string. Patch by Oren Milman. |