我刚刚完成了 Python 3.3 的全新安装(从源代码),并安装了“请求”库。我正在尝试一个非常简单的请求:
r = requests.get('https://www.google.com/')
我得到一个非常奇怪的错误作为回报:
File "/usr/local/lib/python3.3/http/cookiejar.py", line 1647, in extract_cookies
if self._policy.set_ok(cookie, request):
File "/usr/local/lib/python3.3/http/cookiejar.py", line 931, in set_ok
if not fn(cookie, request):
File "/usr/local/lib/python3.3/http/cookiejar.py", line 952, in set_ok_verifiability
if request.unverifiable and is_third_party(request):
AttributeError: 'MockRequest' object has no attribute 'unverifiable'
看到我仍然是一个 Python 初学者,我完全不知道是什么导致了这个错误。有任何想法吗?