I get the following error on Python 2.6.x, how should I fix this?

  except (httplib.IncompleteRead), e:
NameError: name 'httplib' is not defined
有帮助吗?

解决方案

Import Module on file

import httplib

其他提示

Import the module at the top of the file.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top