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 WildCard65
Recipients WildCard65, martin.panter, paul.moore, steve.dower, terry.reedy, tim.golden, vstinner, zach.ware
Date 2018-01-04.14:56:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1515077794.58.0.467229070634.issue25095@psf.upfronthosting.co.za>
In-reply-to
Content
I believe I found the issue, might be an issue between sending the request + calling get_response() and the time it takes for server to process response, my print cases:

test_err (test.test_httpservers.RequestHandlerLoggingTestCase) ... Creating a new connection to 127.0.0.1:50141
Connecting to server
Sending ERROR request, captured stderr instance is <_io.StringIO object at 0x05E5EC00>
HANDLING AN ERROR REQUEST! SENDING RESPONSE!
Request sent, starting to read response
<http.client.HTTPResponse object at 0x05E6D7E0>
RESPONSE SENT!
Response obtained, err should be set, <_io.StringIO object at 0x05E5EC00>
Running test's assert
ok
test_get (test.test_httpservers.RequestHandlerLoggingTestCase) ... Creating a new connection to 127.0.0.1:50143
Connecting to server
Sending GET request, captured stderr instance is <_io.StringIO object at 0x05E5EC00>
Request sent, starting to read response
HANDLING A GET REQUEST! SENDING RESPONSE!
RESPONSE SENT! ENDING HEADERS!
HEADERS ENDED!
History
Date User Action Args
2018-01-04 14:56:34WildCard65setrecipients: + WildCard65, terry.reedy, paul.moore, vstinner, tim.golden, martin.panter, zach.ware, steve.dower
2018-01-04 14:56:34WildCard65setmessageid: <1515077794.58.0.467229070634.issue25095@psf.upfronthosting.co.za>
2018-01-04 14:56:34WildCard65linkissue25095 messages
2018-01-04 14:56:34WildCard65create