Httplib2 - AttributeError:'NoneType'对象没有属性'makefile'

时间:2010-07-12 06:05:57

标签: python httplib2

我该如何解决这个问题? PS:在Google上搜索,我发现这是一些httplib2错误,但我不明白如何使用人们提供的补丁。

Traceback (most recent call last):  
  File "alt_func.py", line 18, in <module>  
    func(code)
  File "alt_func.py", line 9, in func
    resp, content = h.request(url_string, "GET", headers={'Referer': referer})  
  File "/usr/lib/pymodules/python2.6/httplib2/__init__.py", line 1099, in request  
    (response, new_content) = self._request(conn, authority, uri, request_uri, method,     body, headers, redirections, cachekey)  
  File "/usr/lib/pymodules/python2.6/httplib2/__init__.py", line 901, in _request
    (response, content) = self._conn_request(conn, request_uri, method, body, headers)  
  File "/usr/lib/pymodules/python2.6/httplib2/__init__.py", line 871, in _conn_request  
    response = conn.getresponse()  
  File "/usr/lib/python2.6/httplib.py", line 984, in getresponse  
    method=self._method)  
  File "/usr/lib/python2.6/httplib.py", line 330, in __init__  
    self.fp = sock.makefile('rb', 0)  
AttributeError: 'NoneType' object has no attribute 'makefile'  

3 个答案:

答案 0 :(得分:5)

这是一个众所周知的问题:http://code.google.com/p/httplib2/issues/detail?id=96

似乎记录了一些欺骗行为,或者可能由不同情况引起的相同症状:

答案 1 :(得分:5)

如果您尝试连接的服务器未运行或位于其他端口,则也会出现此错误。如果你问我,这是一个误导性的错误信息。

答案 2 :(得分:0)