summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/IDLE
diff options
context:
space:
mode:
authorTal Einat <taleinat+github@gmail.com>2020-04-04 03:05:58 (GMT)
committerGitHub <noreply@github.com>2020-04-04 03:05:58 (GMT)
commit52013e5b6d5ca32eef5a3d65ecdf7db89cefc2fd (patch)
treeb66ad6b00c4ecd03f18bd951d0952ab728f794f9 /Misc/NEWS.d/next/IDLE
parent6e623ff9d251e0ce86e9b18a01bfd6f067079d7a (diff)
downloadcpython-52013e5b6d5ca32eef5a3d65ecdf7db89cefc2fd.zip
cpython-52013e5b6d5ca32eef5a3d65ecdf7db89cefc2fd.tar.gz
cpython-52013e5b6d5ca32eef5a3d65ecdf7db89cefc2fd.tar.bz2
bpo-38689: avoid IDLE hanging when calltip fails getting a signature (GH-17152)
Inspect.signature failed on the test case because its isinstance call raised.
Diffstat (limited to 'Misc/NEWS.d/next/IDLE')
-rw-r--r--Misc/NEWS.d/next/IDLE/2019-11-14-12-59-19.bpo-38689.Lgfxva.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2019-11-14-12-59-19.bpo-38689.Lgfxva.rst b/Misc/NEWS.d/next/IDLE/2019-11-14-12-59-19.bpo-38689.Lgfxva.rst
new file mode 100644
index 0000000..f4f4a2e
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2019-11-14-12-59-19.bpo-38689.Lgfxva.rst
@@ -0,0 +1,2 @@
+IDLE will no longer freeze when inspect.signature fails when fetching
+a calltip.