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 YoSTEALTH
Recipients YoSTEALTH
Date 2018-02-14.02:06:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1518574001.96.0.467229070634.issue32842@psf.upfronthosting.co.za>
In-reply-to
Content
# current
if timeout is None:
    timeout = -1
elif timeout <= 0:
    timeout = 0

# changed
if timeout is None:
    timeout = -1
elif timeout < -1:
    timeout = 0

what if "timeout=-1" ?
- currently it would result in being timeout=0
History
Date User Action Args
2018-02-14 02:06:42YoSTEALTHsetrecipients: + YoSTEALTH
2018-02-14 02:06:41YoSTEALTHsetmessageid: <1518574001.96.0.467229070634.issue32842@psf.upfronthosting.co.za>
2018-02-14 02:06:41YoSTEALTHlinkissue32842 messages
2018-02-14 02:06:41YoSTEALTHcreate