This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients Al.Sweigart, terry.reedy
Date 2016-05-15.05:56:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1463291811.38.0.0537322912262.issue23977@psf.upfronthosting.co.za>
In-reply-to
Content
The patch adds too much.  Some of the comments are too obvious.  See PEP 8.  Many of the messages repeat the information already provided in the custom messages already provided by the assertXyz failure methods.  For instance, when assertEqual(a, b) fails, the message already prints out something like "%s != $s" % (repr(a), repr(b)).  Perhaps you were not familiar with this.  One of the problems of retrofitting tests is that we do not see the default failure messages.

In any case, over-commenting and over-messaging are not harmless as they make code and failure messages harder, not easier to read.  I will review and add what I think is useful.
History
Date User Action Args
2016-05-15 05:56:51terry.reedysetrecipients: + terry.reedy, Al.Sweigart
2016-05-15 05:56:51terry.reedysetmessageid: <1463291811.38.0.0537322912262.issue23977@psf.upfronthosting.co.za>
2016-05-15 05:56:51terry.reedylinkissue23977 messages
2016-05-15 05:56:50terry.reedycreate