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

2012-01-26 Thread Nikolaus Rath
SourceForge.net nore...@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

[Pydev-users] Bogus Assignment to reserved built-in symbol warnings

2011-12-17 Thread Nikolaus Rath
Hi, I wanted to bump this up again, https://sourceforge.net/tracker/?func=detailaid=3407234group_id=85796atid=577329 Would you consider reopening this? I think there is a big difference between redefining symbols in class scope and redefining them in module- or function scope... Best,

[Pydev-users] PyLint Messages don't get parsed

2011-08-17 Thread Nikolaus Rath
Hello, PyDev is not showing PyLint messages in the Problems view and Editor pane for me. In the Console view, I can see that pylint gets executed: PyLint: Executing command line:' /usr/share/pyshared/pylint/lint.py --include-ids=y /home/nikratio/projekte/s3ql/src/s3ql/block_cache.py 'PyLint:

Re: [Pydev-users] Pylint no longer called

2010-10-27 Thread Nikolaus Rath
Fabio Zadrozny fabi...@gmail.com writes: On Tue, Oct 26, 2010 at 4:02 PM, Nikolaus Rath nikol...@rath.org wrote: Hello, For some reason, PyDev has just stopped calling PyLint on my system. When I saved the last file I was working on, PyLint was still being called. Then I saved it again

[Pydev-users] Pylint no longer called

2010-10-26 Thread Nikolaus Rath
Hello, For some reason, PyDev has just stopped calling PyLint on my system. When I saved the last file I was working on, PyLint was still being called. Then I saved it again, and PyLint was no longer being called. I did not do any changes on my system between the two saves. I tried closing and

[Pydev-users] C module gives unresolved import

2010-04-10 Thread Nikolaus Rath
Hello, My Python project contains a C module which is referenced in a relative import ('from .. import my_c_module'). This prompts PyDev to give an 'Unresolved import' warning for my_c_module. I tried to add 'package.my_c_module' to forced builtins, but that did not help either. How can I get

[Pydev-users] Exclude file from PyDev code analysis without using #@PyDevCodeAnalysisIgnore

2009-12-14 Thread Nikolaus Rath
Hello, I have a couple of python files in my project that are autogenerated by external tools, so I cannot trivially add a '#...@pydevcodeanalysisignode' line to them. Is there any other way to exclude them from the code analysis? Like defining a global list of filenames to ignore? Best,

[Pydev-users] Exclude file from pylint analysis

2009-12-14 Thread Nikolaus Rath
Hello, Is there a way to exclude a couple of specific files from the PyLint analysis? I tried adding the files to PyLint's ignore option, but that doesn't seem to help (I guess since PyDev explicitly calls PyLint with each of the filenames on the command line and thereby overrides the ignore=

[Pydev-users] Code Style

2009-07-25 Thread Nikolaus Rath
Hello, Can someone tell me what the Use locals and attrs in camel case (used for assign quick-assist option under Code Style does? Thanks! -Nikolaus -- »Time flies like an arrow, fruit flies like a Banana.« PGP fingerprint: 5B93 61F8 4EA2 E279 ABF6 02CF A9AD B7F8 AE4E 425C

Re: [Pydev-users] Reformat (comment) paragraph

2009-06-28 Thread Nikolaus Rath
That works nicely, thanks! Is there any way I could have figured this out without asking? This feature seems extremely well hidden and I'm wondering if there are more useful shortcuts that I don't know about... Best, Nikolaus Fabio Zadrozny fabi...@gmail.com writes: Hi Nikolaus, Pydev has

[Pydev-users] Reformat (comment) paragraph

2009-06-27 Thread Nikolaus Rath
Hello, Is there a way to reformat a paragraph when it has become ragged due to editing? In other words, the comment # This is the # result of heavy editing which unfortunately left the newlines at quite unfortunate positions, since some # are way to early and others way to late in the tex.

[Pydev-users] Code Analysis

2009-06-20 Thread Nikolaus Rath
Hello, I am currently testing the code analysis offered by Pydev Extensions. I think I really like the analysis itself (it directly showed me quite some places where I could clean up and improve my code), but I am confused by what exactly is included in the analysis: Sometimes I get errors and

Re: [Pydev-users] Only run a specific test

2009-06-10 Thread Nikolaus Rath
Fabio Zadrozny fabi...@gmail.com writes: But why isn't your method equivalent to specifying the argument in the custom-run configuration? I thought that everything that I enter there is simply passed on to sys.argv of my Python program... Yes, it's the same... It's just that I usually find it

Re: [Pydev-users] Only run a specific test

2009-06-10 Thread Nikolaus Rath
Fabio Zadrozny fabi...@gmail.com writes: On Wed, Jun 10, 2009 at 8:50 PM, Nikolaus Rathnikol...@rath.org wrote: Fabio Zadrozny fabi...@gmail.com writes: But why isn't your method equivalent to specifying the argument in the custom-run configuration? I thought that everything that I enter there

[Pydev-users] Only run a specific test

2009-06-09 Thread Nikolaus Rath
Hello, Is it possible to run only a specific test function from a testcase? I tried to run the following file , | import unittest | | class Test(unittest.TestCase): | | def test_one(self): | self.assertTrue(1+1 == 2) | | def test_two(self): |