summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorOren Milman <orenmn@gmail.com>2017-09-24 18:28:42 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-09-24 18:28:42 (GMT)
commit5d3e80021ab33360191eb0fbff34e0246c913884 (patch)
tree0dffddad98a53919973af779ec935c8cb449a4d9 /Misc
parent91fb0afe181986b48abfc6092dcca912b39de51d (diff)
downloadcpython-5d3e80021ab33360191eb0fbff34e0246c913884.zip
cpython-5d3e80021ab33360191eb0fbff34e0246c913884.tar.gz
cpython-5d3e80021ab33360191eb0fbff34e0246c913884.tar.bz2
bpo-31566: Fix an assertion failure in _warnings.warn() in case of a bad __name__ global. (#3717)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-09-24-09-57-04.bpo-31566.OxwINs.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-09-24-09-57-04.bpo-31566.OxwINs.rst b/Misc/NEWS.d/next/Core and Builtins/2017-09-24-09-57-04.bpo-31566.OxwINs.rst
new file mode 100644
index 0000000..d3ccfd7
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2017-09-24-09-57-04.bpo-31566.OxwINs.rst
@@ -0,0 +1,2 @@
+Fix an assertion failure in `_warnings.warn()` in case of a bad
+``__name__`` global. Patch by Oren Milman.