commit | b8572a1673a8bf25adf3b054f76315bdac2ea45e | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Wed Dec 21 10:16:14 2011 +0100 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Wed Dec 21 10:16:14 2011 +0100 |
tree | 06f3a57e3f9b16698b1a3ed13a110c084b7ff51d | |
parent | 587c7381c76986d0ca51a574f249f06959b93f2c [diff] [blame] |
Issue #1785: Fix inspect and pydoc with misbehaving descriptors. Also fixes issue #13581: `help(type)` wouldn't display anything.
diff --git a/Misc/NEWS b/Misc/NEWS index 7d05311..d2082a6 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -86,6 +86,8 @@ Library ------- +- Issue #1785: Fix inspect and pydoc with misbehaving descriptors. + - Issue #7502: Fix equality comparison for DocTestCase instances. Patch by Cédric Krier.