Go To --> Implementation Problem Follow
Hello,
I'm a professional python developer, and I've been eagerly wanting to get into using PyCharm over Eclipse for various environmental/productivity reasons. During my trial, I've been having some issues with following imports to their implementation.
A quick look at a piece of my project workspace:
trunk/
|
| — django/
| — mycode/
An example (from within mycode/):
from django.http import HttpResponse
When right clicking on HttpResponse, selecting Go To –> Implementation(s), nothing happens. However, if I follow the same steps on http in "from django.http", the file is properly opened. It seems odd to me that the file is known, yet I'm unable to jump to the function declaration. Every import I try has the same problem. Am I configuring something incorrectly?
Any help would be much appreciated.
Thanks!
I'm a professional python developer, and I've been eagerly wanting to get into using PyCharm over Eclipse for various environmental/productivity reasons. During my trial, I've been having some issues with following imports to their implementation.
A quick look at a piece of my project workspace:
trunk/
|
| — django/
| — mycode/
An example (from within mycode/):
from django.http import HttpResponse
When right clicking on HttpResponse, selecting Go To –> Implementation(s), nothing happens. However, if I follow the same steps on http in "from django.http", the file is properly opened. It seems odd to me that the file is known, yet I'm unable to jump to the function declaration. Every import I try has the same problem. Am I configuring something incorrectly?
Any help would be much appreciated.
Thanks!
Please sign in to leave a comment.
from xxxx import yyyy as zzzz
I can follow xxxx and yyyy, but not zzzz.