I have the following file. Why does code completion fail when I Ctrl-Space after "r."? The red box says "no offer."
(The program starts and issues: 200)
__author__ = 'hape' import urllib.request import urllib.response print("Starting") r = urllib.request.urlopen("http://www.python.org") r. <------------ No code completion, why not?! print (r.getcode())
After r. code completion does not appear, why?
python pycharm code-completion
Hartmut
source share