diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/http/client.py | 2 | ||||
-rw-r--r-- | Lib/test/test_httplib.py | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Lib/http/client.py b/Lib/http/client.py index d35f245..b9246fd 100644 --- a/Lib/http/client.py +++ b/Lib/http/client.py @@ -1121,6 +1121,8 @@ class ResponseNotReady(ImproperConnectionState): class BadStatusLine(HTTPException): def __init__(self, line): + if not line: + line = repr(line) self.args = line, self.line = line diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py index 705ceec..84e1f80 100644 --- a/Lib/test/test_httplib.py +++ b/Lib/test/test_httplib.py @@ -106,6 +106,10 @@ class BasicTest(TestCase): resp = client.HTTPResponse(sock) self.assertRaises(client.BadStatusLine, resp.begin) + def test_bad_status_repr(self): + exc = client.BadStatusLine('') + self.assertEquals(repr(exc), '''BadStatusLine("\'\'",)''') + def test_partial_reads(self): # if we have a lenght, the system knows when to close itself # same behaviour than when we read the whole thing with read() |