summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-12-21 08:57:40 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-12-21 08:57:40 (GMT)
commit86a8a9ae983b66ea218ccbb57d3e3a5cdf918e97 (patch)
treee780a89704df3e035af883a5763fe1ac7eeb2ce1 /Misc
parent53aa1d7c5756eda92bd3276dd38dfa1f0c4bcee2 (diff)
downloadcpython-86a8a9ae983b66ea218ccbb57d3e3a5cdf918e97.zip
cpython-86a8a9ae983b66ea218ccbb57d3e3a5cdf918e97.tar.gz
cpython-86a8a9ae983b66ea218ccbb57d3e3a5cdf918e97.tar.bz2
Issue #1785: Fix inspect and pydoc with misbehaving descriptors.
Also fixes issue #13581: `help(type)` wouldn't display anything.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 956146f..1ad91c0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -97,6 +97,8 @@ Core and Builtins
Library
-------
+- Issue #1785: Fix inspect and pydoc with misbehaving descriptors.
+
- Issue #11813: Fix inspect.getattr_static for modules. Patch by Andreas
Stührk.