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 kamie
Recipients ezio.melotti, kamie, michael.foord, pitrou, r.david.murray, the.mulhern
Date 2014-03-11.23:51:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1394581884.59.0.991245860786.issue20145@psf.upfronthosting.co.za>
In-reply-to
Content
Applying changes as suggested by R. David Murray in the Core-mentorship e-mail list.

Instead of doing the if tests I've replaced the existing

   if isinstance(expected_regex, (bytes, str)):

by

   if expected_regex is not None:


And also made a change in one of the tests because I figure out it was wrong.
History
Date User Action Args
2014-03-11 23:51:24kamiesetrecipients: + kamie, pitrou, ezio.melotti, r.david.murray, michael.foord, the.mulhern
2014-03-11 23:51:24kamiesetmessageid: <1394581884.59.0.991245860786.issue20145@psf.upfronthosting.co.za>
2014-03-11 23:51:24kamielinkissue20145 messages
2014-03-11 23:51:24kamiecreate