summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorOren Milman <orenmn@gmail.com>2017-09-19 11:23:01 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-09-19 11:23:01 (GMT)
commit6db7033192cd537ca987a65971acb01206c3ba82 (patch)
treef05068e6e7e700e321cd282f577570918d9c64f6 /Misc
parent453408a50508bb6801b6724ba7c7d1c017c218b6 (diff)
downloadcpython-6db7033192cd537ca987a65971acb01206c3ba82.zip
cpython-6db7033192cd537ca987a65971acb01206c3ba82.tar.gz
cpython-6db7033192cd537ca987a65971acb01206c3ba82.tar.bz2
bpo-31492: Fix assertion failures in case of a module with a bad __name__ attribute. (#3620)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-09-16-22-49-16.bpo-31492.RtyteL.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-09-16-22-49-16.bpo-31492.RtyteL.rst b/Misc/NEWS.d/next/Core and Builtins/2017-09-16-22-49-16.bpo-31492.RtyteL.rst
new file mode 100644
index 0000000..a870473
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2017-09-16-22-49-16.bpo-31492.RtyteL.rst
@@ -0,0 +1,3 @@
+Fix assertion failures in case of failing to import from a module with a bad
+``__name__`` attribute, and in case of failing to access an attribute of such
+a module. Patch by Oren Milman.