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 abarry
Recipients Ben Kane, abarry, docs@python
Date 2016-05-29.19:23:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1464549797.99.0.790982908427.issue27155@psf.upfronthosting.co.za>
In-reply-to
Content
A negative return code generally means an error occurred. Negating retcode here is equivalent to abs(retcode), which shows you want a positive integer to appear in the message - it's not an error.

Could replace '-retcode' with 'abs(retcode)' to be more clear. Possibly also add a comment in the code example body to further clarify this.
History
Date User Action Args
2016-05-29 19:23:18abarrysetrecipients: + abarry, docs@python, Ben Kane
2016-05-29 19:23:17abarrysetmessageid: <1464549797.99.0.790982908427.issue27155@psf.upfronthosting.co.za>
2016-05-29 19:23:17abarrylinkissue27155 messages
2016-05-29 19:23:17abarrycreate