summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <antoine@python.org>2021-03-20 19:07:44 (GMT)
committerGitHub <noreply@github.com>2021-03-20 19:07:44 (GMT)
commit2fd16ef406bba239b1334057fb499496a84b3aa2 (patch)
tree0aca40303f31a7c1b22108eeba1afd9ae3b8ba60 /Misc
parent7cb033c423b65def1632d6c3c747111543b342a2 (diff)
downloadcpython-2fd16ef406bba239b1334057fb499496a84b3aa2.zip
cpython-2fd16ef406bba239b1334057fb499496a84b3aa2.tar.gz
cpython-2fd16ef406bba239b1334057fb499496a84b3aa2.tar.bz2
bpo-43517: Fix false positive in detection of circular imports (#24895)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-03-16-17-12-54.bpo-43517.zAo6Ws.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-03-16-17-12-54.bpo-43517.zAo6Ws.rst b/Misc/NEWS.d/next/Core and Builtins/2021-03-16-17-12-54.bpo-43517.zAo6Ws.rst
new file mode 100644
index 0000000..0f9926b
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-03-16-17-12-54.bpo-43517.zAo6Ws.rst
@@ -0,0 +1,2 @@
+Fix misdetection of circular imports when using ``from pkg.mod import
+attr``, which caused false positives in non-trivial multi-threaded code.