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 Hoolean
Recipients Hoolean
Date 2015-04-05.00:57:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1428195463.82.0.559504880721.issue23873@psf.upfronthosting.co.za>
In-reply-to
Content
Code was present that checked conditions that had previous been checked and had returned the function prematurely if the condition was true. As the condition has not changed before the check is made again, the condition will always be false and the code inside the if-statement will never be evaluated.

The attached patch removes unnecessary code.
History
Date User Action Args
2015-04-05 00:57:43Hooleansetrecipients: + Hoolean
2015-04-05 00:57:43Hooleansetmessageid: <1428195463.82.0.559504880721.issue23873@psf.upfronthosting.co.za>
2015-04-05 00:57:43Hooleanlinkissue23873 messages
2015-04-05 00:57:42Hooleancreate