Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PyCharm and Pypy - Unresolved reference

For some weird reason, my PyCharm loves to show unresolved errors everywhere.
But only with pypy. The source runs just fine, even PyCharm can run the code perfect.

But the red lines everywhere are really annoying.
The problem: http://i.imgur.com/o5BqCZP.jpg

Ps.: I tried the Invalidate cache method, but it didn't help.

like image 431
Apache Avatar asked Aug 02 '13 07:08

Apache


People also ask

How do I find the python path in PyCharm?

Press Ctrl+Alt+S to open the IDE settings and select Project <project name> | Python Interpreter. Expand the list of the available interpreters and click the Show All link.


1 Answers

It's a known bug with PyPy support in PyCharm, see http://youtrack.jetbrains.com/issue/PY-9546.

The bug seems to be fixed now.

like image 137
CrazyCoder Avatar answered Oct 02 '22 23:10

CrazyCoder