diff options
author | Anthony Sottile <asottile@umich.edu> | 2019-09-09 15:17:50 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@python.org> | 2019-09-09 15:17:50 (GMT) |
commit | 65366bc8bdc4716ebc361e622590b45a6e5aef07 (patch) | |
tree | 520bd77224c7ecb24bd2851f15cf91ecc3b9d924 /Misc | |
parent | 88b24f96aedbe546d7d3248089d94e874edc0e11 (diff) | |
download | cpython-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.rst | 2 |
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. |