Terry J. Reedy added the comment:

You changed "NNTP_CLASS = nntplib.NNTP_SSL", which could potentially fail, to 
"NNTP_CLASS = getattr(nntplib, 'NNTP_SSL', None)", which cannot fail.  Since 
that was the only thing that previously could fail, the change leaves nothing 
that can fail, so the test is not a test.

I suggested that you either not add the third param, a default, or that you 
remove the null test completely. If particular, if the only chunk of code in 
nntplib that is currently being tested is being executed by some other test, 
then do the latter.

----------

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

Reply via email to