summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/IDLE
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-04-04 03:25:06 (GMT)
committerGitHub <noreply@github.com>2020-04-04 03:25:06 (GMT)
commit15337726e5b92976c2815d05c514804e9aa49a8c (patch)
tree07953110a87dff9bedf04be2b3947fbd67b6827d /Misc/NEWS.d/next/IDLE
parente6685ad05385f8cb492e8e1c7c07889a94517f55 (diff)
downloadcpython-15337726e5b92976c2815d05c514804e9aa49a8c.zip
cpython-15337726e5b92976c2815d05c514804e9aa49a8c.tar.gz
cpython-15337726e5b92976c2815d05c514804e9aa49a8c.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. (cherry picked from commit 52013e5b6d5ca32eef5a3d65ecdf7db89cefc2fd) Co-authored-by: Tal Einat <taleinat+github@gmail.com>
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.