You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CPython pull requests python/cpython#2205 removes splitattr and other undocumented functions from urllib.request, leading to the failure in future.moves.urllib.request:
$ python3.8 -c 'from future.moves.urllib import request as urllib_request'
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/home/yen/.local/lib/python3.8/site-packages/future/moves/urllib/request.py", line 9, in <module>
from urllib.request import (getproxies,
ImportError: cannot import name 'splitattr' from 'urllib.request' (/usr/lib/python3.8/urllib/request.py)
The CPython pull requests python/cpython#2205 removes splitattr and other undocumented functions from urllib.request, leading to the failure in future.moves.urllib.request:
Python version: python/cpython@612dbefe9d
future version: git master
The text was updated successfully, but these errors were encountered: