Python 3.3 を (ソースから) 新規インストールし、'requests' ライブラリをインストールしました。私は非常に単純なリクエストを試みています:
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 の初心者なので、このエラーの原因がまったくわかりません。何か案は?