STINNER Victor added the comment:

+        except:
+            pass
...
+    except TypeError:
+        return None

I don't understand these try/except. First, "except: pass" must never be used, 
only catch specific exceptions (ex: AttributeError). Can you explain why you 
expect a TypeError?

If your patch fixes a bug, you must add a new unit test to test_pydoc to check 
for non-regression.

----------
nosy: +haypo

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue1185124>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to