[Pydev-users] [Users] RE: java.lang.RuntimeException: PyLint ERROR:

2011-12-13 Thread SourceForge . net
The following forum message was posted by fabioz at 
http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4874783:

It seems you specified the PyLint location but it's not available in the 
PYTHONPATH
for the interpreter you're using...

--
Systems Optimization Self Assessment
Improve efficiency and utilization of IT resources. Drive out cost and 
improve service delivery. Take 5 minutes to use this Systems Optimization 
Self Assessment. http://www.accelacomm.com/jaw/sdnl/114/51450054/
___
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users


[Pydev-users] [Users] RE: java.lang.RuntimeException: PyLint ERROR:

2011-12-19 Thread SourceForge . net
The following forum message was posted by piotr_dobrogost at 
http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4874783:

Yes and no :)
Running [code]c:\python\virtualenv\x\Lib\site-packages\pylint\lint.py[/code]
from within command line with the same virtualenv activated results in the same
error, indeed. However running [code]python
c:\python\virtualenv\x\Lib\site-packages\pylint\lint.py[/code] gives no errors.
That's because virtualenv's python executable is on the [code]PATH[/code] but
[code].py[/code] extension is still associated with the original Python 
installation.
See http://stackoverflow.com/questions/4879624/

I think that changing the way PyDev runs pylint (specifying interpreter's name
before path to pylint script) would solve this problem.

--
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
http://p.sf.net/sfu/intel-appdev
___
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users


[Pydev-users] [Users] RE: java.lang.RuntimeException: PyLint ERROR:

2012-01-12 Thread SourceForge . net
The following forum message was posted by piotr_dobrogost at 
http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4874783:

Any comments on this?

--
RSA(R) Conference 2012
Mar 27 - Feb 2
Save $400 by Jan. 27
Register now!
http://p.sf.net/sfu/rsa-sfdev2dev2
___
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users


[Pydev-users] [Users] RE: java.lang.RuntimeException: PyLint ERROR:

2012-01-20 Thread SourceForge . net
The following forum message was posted by piotr_dobrogost at 
http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4874783:

[quote]I think that changing the way PyDev runs pylint (specifying interpreter's
name before path to pylint script) would solve this problem.[/quote]

Fabio, what do you think?

--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users


[Pydev-users] [Users] RE: java.lang.RuntimeException: PyLint ERROR:

2012-01-25 Thread SourceForge . net
The following forum message was posted by fabioz at 
http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4874783:

Yes, I think that there are improvements needed to make PyLint have a better
integration in PyDev... (I must say I'm not giving a high priority for that
because with the pep8 integration and the code-analysis built into PyDev, which
are already better integrated, PyLint is becoming less useful, so, I wanted
to know which features do you use of PyLint -- to know if it's worth spending
more time to improve its integration).

Cheers,

Fabio

--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users


[Pydev-users] [Users] RE: java.lang.RuntimeException: PyLint ERROR:

2012-01-25 Thread SourceForge . net
The following forum message was posted by piotr_dobrogost at 
http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4874783:

Thanks for answering.

>From time to time I go through all Pylint's warnings and check code to see what
I can do to remove them. It's good there's PEP8 integration now. To tell the
truth I thought it would overall be better to make Pylint check all things PEP8
checks; see my question at http://stackoverflow.com/questions/6879640/ It looks
like nothing happens with http://www.logilab.org/ticket/82519

I'd like to make a remark this problem is probably not specific to Pylint. If
there were other 3rd party libs called by PyDev the problem would be the same.
Maybe there are already such libs which I'm not aware of...

--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users


Re: [Pydev-users] [Users] RE: java.lang.RuntimeException: PyLint ERROR:

2012-01-26 Thread Nikolaus Rath
SourceForge.net  writes:
> The following forum message was posted by fabioz at 
> http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4874783:
>
> Yes, I think that there are improvements needed to make PyLint have a better
> integration in PyDev... (I must say I'm not giving a high priority for that
> because with the pep8 integration and the code-analysis built into PyDev, 
> which
> are already better integrated, PyLint is becoming less useful, so, I wanted
> to know which features do you use of PyLint -- to know if it's worth spending
> more time to improve its integration).

My main reason for using PyLint is its more powerful type inference.
PyLint is able to warn me about accessing non-existent attributes or
calling functions with the wrong signature in many more cases than PyDev
is.


Best,

   -Nikolaus

-- 
 »Time flies like an arrow, fruit flies like a Banana.«

  PGP fingerprint: 5B93 61F8 4EA2 E279 ABF6  02CF A9AD B7F8 AE4E 425C


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users