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 inglesp
Recipients inglesp
Date 2016-03-14.18:11:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1457979107.59.0.709846628148.issue26560@psf.upfronthosting.co.za>
In-reply-to
Content
The line:

  assert int(status[:3]),"Status message must begin w/3-digit code"

should be something like:

  assert status[:3].isnumeric(), "Status message must begin w/3-digit code"
History
Date User Action Args
2016-03-14 18:11:47inglespsetrecipients: + inglesp
2016-03-14 18:11:47inglespsetmessageid: <1457979107.59.0.709846628148.issue26560@psf.upfronthosting.co.za>
2016-03-14 18:11:47inglesplinkissue26560 messages
2016-03-14 18:11:47inglespcreate