-
No problems. Closing bug.
2009-11-06 11:35:51 UTC in Pydev for Eclipse
-
Fixed for 1.5.1
Git
%h 5510e9d
%ct 1257469704.
2009-11-06 01:10:15 UTC in Pydev for Eclipse
-
Actually, I had to revert the code, just adding a '\n' in the end -- the final version uses the open and not the codecs.open anymore as it doesn't work as expected.
obj = compile(open(file).read()+"\n", file, 'exec')
Git
%h 5510e9d
%ct 1257469704.
2009-11-06 01:08:58 UTC in Pydev for Eclipse
-
Done for 1.5.1
Git
%h 9bf905e
%ct 1257467032.
2009-11-06 00:24:54 UTC in Pydev for Eclipse
-
Have you tried refreshing your files before the search? (it doesn't really seem like a Pydev problem, as the search -- which is provided by the Eclipse platform -- should be unrelated to that).
2009-11-06 00:10:59 UTC in Pydev for Eclipse
-
Fixed for 1.5.1
Git
%h af62f00
%ct 1257078216
The problem was that there's an IRONPYTHONPATH variable that was not being properly set.
2009-11-06 00:07:51 UTC in Pydev for Eclipse
-
The errors I found there are below (are those the same you have?):
These are because you're not using self as the first parameter or cls for classmethods (this is a python convention, so, if you don't want to follow it, you can disable it in the code analysis -- or you can silence Pydev by adding a comment with #@NoSelf at that line)
Method '__eq__ - mutagen.id3' should have self as...
2009-11-06 00:05:32 UTC in Pydev for Eclipse
-
If you add 'numpy' to the forced builtins, the numpy errors should go away. See: http://pydev.org/manual_101_interpreter.html.
2009-11-05 23:14:44 UTC in Pydev for Eclipse
-
If you run it from the command-line does it work? (if it doesn't it means it's a PyLint bug and should be reported to the PyLint guys)
2009-11-05 23:12:35 UTC in Pydev for Eclipse
-
If you have something as 'file' not recognized, that means its probably not getting the builtins properly in pydev (this usually happens because of some enabled firewall preventing communication from eclipse to a spawned python shell).
If you don't have an active firewall, please create a bug report following the instructions at: [http://pydev.org/faq.html#how\_do\_i\_report\_a\_bug][1]...
2009-11-03 00:45:36 UTC in Pydev for Eclipse