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 drallensmith
Recipients drallensmith
Date 2017-08-10.12:58:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1502369895.03.0.916011821853.issue31169@psf.upfronthosting.co.za>
In-reply-to
Content
The section in question is:

def convert_to_error(kind, result):
    if kind == '#ERROR':
        return result
    elif kind == '#TRACEBACK':
        assert type(result) is str
        return  RemoteError(result)
    elif kind == '#UNSERIALIZABLE':
        assert type(result) is str
        return RemoteError('Unserializable message: %s\n' % result)
    else:
return ValueError('Unrecognized message type')
History
Date User Action Args
2017-08-10 12:58:15drallensmithsetrecipients: + drallensmith
2017-08-10 12:58:15drallensmithsetmessageid: <1502369895.03.0.916011821853.issue31169@psf.upfronthosting.co.za>
2017-08-10 12:58:14drallensmithlinkissue31169 messages
2017-08-10 12:58:14drallensmithcreate