summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2019-09-09 15:17:50 (GMT)
committerSteve Dower <steve.dower@python.org>2019-09-09 15:17:50 (GMT)
commit65366bc8bdc4716ebc361e622590b45a6e5aef07 (patch)
tree520bd77224c7ecb24bd2851f15cf91ecc3b9d924 /Misc
parent88b24f96aedbe546d7d3248089d94e874edc0e11 (diff)
downloadcpython-65366bc8bdc4716ebc361e622590b45a6e5aef07.zip
cpython-65366bc8bdc4716ebc361e622590b45a6e5aef07.tar.gz
cpython-65366bc8bdc4716ebc361e622590b45a6e5aef07.tar.bz2
bpo-20490: Improve circular import error message (GH-15308)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-08-15-12-48-36.bpo-20490.-hXeEn.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-08-15-12-48-36.bpo-20490.-hXeEn.rst b/Misc/NEWS.d/next/Core and Builtins/2019-08-15-12-48-36.bpo-20490.-hXeEn.rst
new file mode 100644
index 0000000..dfee480
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-08-15-12-48-36.bpo-20490.-hXeEn.rst
@@ -0,0 +1,2 @@
+Improve import error message for partially initialized module on circular
+``from`` imports - by Anthony Sottile.