光阴似箭催人老,日月如移越少年。
It should be a version problem, py2.7 reports an error, but py3.5 does not.
python2.7: >>> import urllib >>> 'error' in dir(urllib) False python3.5: >>> import urllib >>> 'error' in dir(urllib) True
It should be a version problem, py2.7 reports an error, but py3.5 does not.