Fix xmlrpc unittest. While it now passes on Linux, it still fails

on FreeBSD due to the difference of socket blocking mode inheritance.
This commit is contained in:
Hye-Shik Chang 2007-08-19 10:49:11 +00:00
parent faa54a3929
commit 9604286ee1
2 changed files with 7 additions and 25 deletions

View file

@ -1117,8 +1117,8 @@ class Transport:
if resp.status != 200:
raise ProtocolError(
host + handler,
errcode, errmsg,
headers
resp.status, resp.reason,
resp.getheaders()
)
self.verbose = verbose