Re: [Pydev-users] How to suppress 'unused import' warning

2009-01-12 Thread Fabio Zadrozny
in our code we sometimes use import apackage from some.other.place import foo and our apackage/__init__.py sets up import mechanisms and is required for proper functionality of following code. Now the problem is that PyDev thinks that this is unused import. Is there any way how to

[Pydev-users] Pydev 1.4.2 Released

2009-01-13 Thread Fabio Zadrozny
, -- Fabio Zadrozny -- Software Developer Aptana http://aptana.com/python Pydev Extensions http://www.fabioz.com/pydev Pydev - Python Development Enviroment for Eclipse http://pydev.sf.net http://pydev.blogspot.com

Re: [Pydev-users] pylint

2009-01-14 Thread Fabio Zadrozny
Playing with pydev for some time and must say I really like it, particularly because of the Mylyn integration. One thing I'm missing is the possibility to use different pylint configurations for each project. Some of my projects have different coding styles and I'd like to adapt the pylint

Re: [Pydev-users] Strange error shifting from 2.5 to 2.6?

2009-01-14 Thread Fabio Zadrozny
Which version of eclipse/pydev are you using? Also, the pythonpath didn't come through... Does it work from the command line (provided you set the PYTHONPATH as specified?) Can you paste your launch (to do that, go to the launch, in the run dialog: common tab and select 'shared file' and specify a

Re: [Pydev-users] reduce pylint reaction time

2009-02-19 Thread Fabio Zadrozny
Hi Timmie. Well, short answer is no: in the current PyLint modus-operandi there's no real way to make it faster (note that PyLint analysis requests are triggered by file saves because it needs the files updated in the filesystem) The long answer is that the PyLint developers could probably do it

[Pydev-users] Pydev 1.4.3 Released

2009-02-19 Thread Fabio Zadrozny
is a plugin that enables users to use Eclipse for Python and Jython development -- making Eclipse a first class Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny

[Pydev-users] Pydev 1.4.4 Released

2009-02-24 Thread Fabio Zadrozny
to use Eclipse for Python and Jython development -- making Eclipse a first class Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny

Re: [Pydev-users] [pydev - Users] Alternative Install possible in 1.4.4?

2009-03-03 Thread Fabio Zadrozny
Just to note, I'm going to post things to the bug: https://sourceforge.net/tracker2/index.php?func=detailaid=2658071group_id=85796atid=577329 Cheers, Fabio On Mon, Mar 2, 2009 at 11:39 PM, Radim Kubacki ra...@kubacki.cz wrote: On Mon, Mar 2, 2009 at 3:33 PM, Radim Kubacki ra...@kubacki.cz

Re: [Pydev-users] pydev extensions completion and checking

2009-03-04 Thread Fabio Zadrozny
Hi, A couple of weeks ago I switched at work from python 2.5 to 2.6 (my colleagues somewhat later). But code completion and code checking works buggie from that point on. With windows python 2.6 it finds half of the modules or the content of it(even non-unix-only parts), with cygwin python

Re: [Pydev-users] slow code completion in Linux: EasyEclipse or Ganimede

2009-03-29 Thread Fabio Zadrozny
Well, the logs point everywhere that the module threading cannot be gotten when the shell is created. So, do you have that module available in your libs? It doesn't seem so from the paths provided (you have to add the Jython Libs to the system pythonpath when configuring the interpreter) Another

Re: [Pydev-users] html/css editor

2009-04-27 Thread Fabio Zadrozny
what editor do you guys recommend for html/css/JS editing? I think that Aptana Studio would be a good choice for that: http://aptana.com/studio Cheers, Fabio -- Crystal Reports #45; New Free Runtime and 30 Day Trial

[Pydev-users] Pydev 1.4.6 Released

2009-05-20 Thread Fabio Zadrozny
analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer Aptana http://aptana.com/python Pydev Extensions http://www.fabioz.com/pydev Pydev - Python Development Enviroment for Eclipse http://pydev.sf.net http

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

2009-06-09 Thread Fabio Zadrozny
Usually, what I do to run only one test is setting the main part to: if __name__ == '__main__': import sys;sys.argv=['', 'Test.test_one'] unittest.main() You could also do a suite and call that suite, but I find that way easier (and yes, pydev should have a better support to run only one

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

2009-06-10 Thread Fabio Zadrozny
it there. Cheers, Fabio Best, -Nikolaus Fabio Zadrozny fabi...@gmail.com writes: Usually, what I do to run only one test is setting the main part to: if __name__ == '__main__':     import sys;sys.argv=['', 'Test.test_one']     unittest.main() You could also do a suite and call that suite

Re: [Pydev-users] Code Analysis

2009-06-21 Thread Fabio Zadrozny
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] Code Analysis

2009-06-22 Thread Fabio Zadrozny
That makes sense, thanks a lot. Just to make it absolutely clear: what exactly does it mean for a file to map to a python module? It means that it must be under a source folder and all the folders to get to it from the source folder have __init__.py files (so, you must be able to import it

[Pydev-users] Pydev 1.4.7 Released

2009-07-08 Thread Fabio Zadrozny
Eclipse a first class Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer Aptana http://aptana.com/python Pydev

Re: [Pydev-users] Lost Debug Configs w/Upgrade

2009-07-21 Thread Fabio Zadrozny
Really strange... can you report that as a bug so that I can take a look? Please add a screenshot of the dialog where those configs were expected -- and give the details asked in http://pydev.sourceforge.net/faq.html#how_do_i_report_a_bug Cheers, Fabio On Tue, Jul 21, 2009 at 11:48 AM, Kenneth

Re: [Pydev-users] Enter Debug in Spawned Python Code

2009-07-22 Thread Fabio Zadrozny
It's possible to do it with the remote debugger (see: http://fabioz.com/pydev/manual_adv_remote_debugger.html ) Note that it's only available in pydev extensions. Cheers, Fabio On Wed, Jul 22, 2009 at 3:30 PM, Kenneth Loafmankenn...@loafman.com wrote: I need to be able to enter debug in the

Re: [Pydev-users] Did pydev overwrite java's CLASSPATH?

2009-07-23 Thread Fabio Zadrozny
Hi Jurgen, The problem arose a week ago after updating to pydev extensions 1.4.7.2843 When I execute the following in Eclipse thru pydev os.environ['CLASSPATH'] ... The output shows items I would have expected for the python path not the Java CLASSPATH. ... I've checked my settings

Re: [Pydev-users] Code Style

2009-07-25 Thread Fabio Zadrozny
Hi Nikolaus, Can someone tell me what the Use locals and attrs in camel case (used for assign quick-assist option under Code Style does? This is used for knowing how the assign to local/assign to field ( see: http://sourceforge.net/contentassist.html ) should create the target name (I'll

Re: [Pydev-users] Question about debugging jython 2.5 code

2009-08-15 Thread Fabio Zadrozny
if that could be an option (although the debugger won't be able to show lots of info without that flag). Cheers, Fabio Any ideas? Thanks, William On Sat, Aug 15, 2009 at 2:06 PM, Fabio Zadrozny fabi...@gmail.com wrote: On Sat, Aug 15, 2009 at 6:16 AM, william ratcliffwilliam.ratcl

Re: [Pydev-users] Question about debugging jython 2.5 code

2009-08-15 Thread Fabio Zadrozny
check if that could be an option (although the debugger won't be able to show lots of info without that flag). Cheers, Fabio Any ideas? Thanks, William On Sat, Aug 15, 2009 at 2:06 PM, Fabio Zadrozny fabi...@gmail.com wrote: On Sat, Aug 15, 2009 at 6:16 AM, william ratcliffwilliam.ratcl

Re: [Pydev-users] Question about debugging jython 2.5 code

2009-08-16 Thread Fabio Zadrozny
extensions remote debugger ( http://fabioz.com/pydev/manual_adv_remote_debugger.html )-- I can check if that could be an option (although the debugger won't be able to show lots of info without that flag). Cheers, Fabio Any ideas? Thanks, William On Sat, Aug 15, 2009 at 2:06 PM, Fabio

Re: [Pydev-users] pydev editor freeze eclipse 3.5

2009-08-20 Thread Fabio Zadrozny
On Thu, Aug 20, 2009 at 6:38 AM, Fabio Tesserfabio.tes...@gmail.com wrote: I just installed eclipse 3.5 and pydev 1.4.7.2843. My OS is ubuntu 9.10 Every time I try to edit a file with the pydev editor eclipse freezes (I must kill eclipse). The same version of pydev with eclipse 3.4.2 works

[Pydev-users] Pydev 1.4.8 Released

2009-08-21 Thread Fabio Zadrozny
for Python, Jython and Iron Python development -- making Eclipse a first class Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny

Re: [Pydev-users] Pydev + Remote Systems Explorer

2009-09-11 Thread Fabio Zadrozny
Hi, Can you provide the full stack trace? (it should be available in your error log). Cheers, Fabio On Fri, Sep 11, 2009 at 6:20 PM, Jitendra Singh jits_1...@hotmail.com wrote: Hi Guys, Has anyone user PyDev with RSE. I keep getting null pointer exception with any kind of code navigation

Re: [Pydev-users] why the link to python executable?

2009-09-14 Thread Fabio Zadrozny
It's not really a link, just the information to the current interpreter you're using. You can filter it in the pydev package explorer in the menu (ctrl+F10 customize view interpreter info). Cheers, Fabio On Mon, Sep 14, 2009 at 6:58 PM, Tim Michelsen timmichel...@gmx-topmail.de wrote: Hello,

Re: [Pydev-users] keyboard shortcut issues

2009-09-16 Thread Fabio Zadrozny
Hi Craig, The first is I can't seem to get the toggle breakpoint keyboard shortcut to work in the pydev editors. It works fine in java, but not in python. Using Ctrl+F10 here works for me (which shortcut is not available)? The second issue, and more important for me, is that it would be

Re: [Pydev-users] pydev and debugging

2009-12-03 Thread Fabio Zadrozny
It seems there's a mix of interpreter/libraries you're using... The Python 2.5 interpreter will give that error if a 'with' construct is used, while it's valid in Python 2.6 (so, you're using a Python 2.5 interpreter with a Python 2.6 library -- so, there's probably some misconfiguration where

Re: [Pydev-users] Tasks

2009-12-05 Thread Fabio Zadrozny
No, it should be working... provided your files are properly in your source folders ( http://pydev.org/manual_101_project_conf.html ) and you have the builders enabled. Cheers, Fabio On Fri, Dec 4, 2009 at 7:26 PM, Frank Dornheim conl...@googlemail.com wrote: Hi, normally i could write a

[Pydev-users] Pydev 1.5.2 Released

2009-12-09 Thread Fabio Zadrozny
users to use Eclipse for Python, Jython and IronPython development -- making Eclipse a first class Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny

Re: [Pydev-users] Cannot debug while in gtk.main() loop - because of threading?

2009-12-10 Thread Fabio Zadrozny
Hi Darren, Which version of GTK/python/Pydev are you using? Cheers, Fabio On Wed, Dec 9, 2009 at 12:30 PM, Darren Worrall d...@darrenworrall.co.uk wrote: Hi all, Apologies if I'm missing something obvious, I cannot debug while a GTK app is in it's main() loop, or rather, execution does

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

2009-12-14 Thread Fabio Zadrozny
Not really. Usually in this situation I do a post-processing on the generated files to add the #...@pydevcodeanalysisignore afterwards. Cheers, Fabio On Mon, Dec 14, 2009 at 11:18 AM, Nikolaus Rath nikol...@rath.org wrote: Hello, I have a couple of python files in my project that are

Re: [Pydev-users] Exclude file from pylint analysis

2009-12-14 Thread Fabio Zadrozny
On Mon, Dec 14, 2009 at 11:44 AM, Nikolaus Rath nikol...@rath.org wrote: 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

Re: [Pydev-users] question about python run with option entered

2010-01-08 Thread Fabio Zadrozny
2010/1/8 nieYan helennie1...@hotmail.com: Hello, I'm trying to run a python code, which contains some OptionParser. How can I enter the option that I choose for running the python run. Thank you so much Yan Hello Yan, You can do that in the menu: run run configurations choose the

Re: [Pydev-users] question about python run with option entered

2010-01-08 Thread Fabio Zadrozny
Thank you Fabio. I've tried that,but it doesn't work for me. I write the argument like: ${options=-t}${options=-f}${args=300} for this optionparser. You mean that sys.argv doesn't have the arguments you're setting? What are the sys.argv contents? Cheers, Fabio

[Pydev-users] Pydev 1.5.4 Released

2010-01-19 Thread Fabio Zadrozny
such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer Aptana http://aptana.com/python Pydev - Python Development Environment for Eclipse http://pydev.org

Re: [Pydev-users] Code completion for hybrid C++/python boost-python modules

2010-02-02 Thread Fabio Zadrozny
Just answered you in the forum... On Tue, Feb 2, 2010 at 9:21 PM, Valerio Mariani valerio.mari...@gmail.com wrote: Dear All, my name is Valerio and I am a developer for an open source structural biology project. I also posted this on the PyDev forum. I don't know wether this list or that

Re: [Pydev-users] Treatment of external sources within the workspace

2010-02-04 Thread Fabio Zadrozny
2010/2/4 Rickard Petzäll rickard.petz...@jeppesen.com: Hello, I am looking at the problem of setting up Pydev where I have a number of files part of the project and a large number of files that are really only to consider as a library. The current set-up is that my files are in the Source

Re: [Pydev-users] Problem with Refactoring in Pydev

2010-02-19 Thread Fabio Zadrozny
On Fri, Feb 19, 2010 at 6:27 PM, Kenneth Loafman kenn...@loafman.com wrote: Folks, I am trying to use Refactoring/Generate Properties and Generate Constructor, however, every time I try it gives me: Error making refactoring java.lang.NullPointerException There is no entry in

[Pydev-users] Pydev 1.5.5 Released

2010-03-04 Thread Fabio Zadrozny
such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer Aptana http://aptana.com/python Pydev - Python Development Environment for Eclipse http://pydev.org

Re: [Pydev-users] Popup Error occurs while typing

2010-03-07 Thread Fabio Zadrozny
On Sun, Mar 7, 2010 at 5:14 PM, David Arnold dwarnol...@suddenlink.net wrote: All, The following error keeps popping up while typing in Aptana Studio with latest pydev installed: http://msemac.redwoods.edu/~darnold/junk/pydev.tiff Any thoughts? Not really, do you have some error in

Re: [Pydev-users] Popup Error occurs while typing

2010-03-08 Thread Fabio Zadrozny
, at 4:28 PM, Fabio Zadrozny wrote: On Sun, Mar 7, 2010 at 5:14 PM, David Arnold dwarnol...@suddenlink.net wrote: All, The following error keeps popping up while typing in Aptana Studio with latest pydev installed: http://msemac.redwoods.edu/~darnold/junk/pydev.tiff Any thoughts

Re: [Pydev-users] Debugging with PyDev

2010-03-09 Thread Fabio Zadrozny
On Tue, Mar 9, 2010 at 3:21 AM, David Arnold dwarnol...@suddenlink.net wrote: All, OK. Think I've found the problem. I can redirect the output to a filename. app = wx.App(redirect=True,filename='output') However, I don't know how to redirect the output to the PyDev console. D. If you don't

Re: [Pydev-users] Debugging with PyDev

2010-03-09 Thread Fabio Zadrozny
On Tue, Mar 9, 2010 at 6:50 AM, Fabio Zadrozny fabi...@gmail.com wrote: On Tue, Mar 9, 2010 at 3:21 AM, David Arnold dwarnol...@suddenlink.net wrote: All, OK. Think I've found the problem. I can redirect the output to a filename. app = wx.App(redirect=True,filename='output') However, I

Re: [Pydev-users] Clearing Pydev/PyLint Errors

2010-03-09 Thread Fabio Zadrozny
On Sun, Feb 28, 2010 at 7:59 AM, Kenneth Loafman kenn...@loafman.com wrote: Got super tired of the noise, so here's a quick fix, probably slightly hazardous if you don't follow directions exactly.  You've been warned. 1) exit Eclipse 2) cd to your workspace 3) run 'find . -name .markers

Re: [Pydev-users] Popup Error occurs while typing

2010-03-09 Thread Fabio Zadrozny
Hi David, The following error keeps popping up while typing in Aptana Studio with latest pydev installed: http://msemac.redwoods.edu/~darnold/junk/pydev.tiff Any thoughts? I've just got the latest aptana with pydev here and it seems to work for me... doesn't anything appear in your

Re: [Pydev-users] restoreModules on Preferences page

2010-03-09 Thread Fabio Zadrozny
Is there any particular reason that the restoreModules function on the project preference page uses the ProgressMonitorDialog (i.e. that it is a modal process)? Would it be possible to run this as a normal Job so it is possible to work when the interpreter is reloading its modules?

Re: [Pydev-users] Popup Error occurs while typing

2010-03-09 Thread Fabio Zadrozny
/CFPlugIn 0x1dc1c0 /Library/Contextual Menu Items/TI Connect X Menu Plugin.plugin (bundle, not loaded) Does that help? David. On Mar 9, 2010, at 9:02 AM, Fabio Zadrozny wrote: Hi David, The following error keeps popping up while typing in Aptana Studio with latest pydev installed: http

Re: [Pydev-users] Does PyDev hvae an integrated help?

2010-03-11 Thread Fabio Zadrozny
On Thu, Mar 11, 2010 at 8:38 AM, Janosch Peters j...@websliders.net wrote: Hi, I just started coding python using PyDev. From the IDEs I tested, PyDev was clearly the best free one. However I am missing an integrated help like in Visual Studio or in Eclipse/Java, where you press a button or

Re: [Pydev-users] Adding a file or directory to package

2010-03-18 Thread Fabio Zadrozny
On Sun, Mar 14, 2010 at 3:06 AM, David Arnold dwarnol...@suddenlink.net wrote: All, Everytime I want to add an external file that will show up in the package explorer, I get stuck. Same for folders of files, like icons or such. Just what is the proper procedure for adding a file (folder of

Re: [Pydev-users] Unindent

2010-03-31 Thread Fabio Zadrozny
On Wed, Mar 31, 2010 at 9:31 PM, David Arnold dwarnol...@suddenlink.net wrote: All, I think I may have asked this before. How can you unindent a block of code in PyDev Eclipse? Shift+Tab (with the line(s) you want to unindent selected). Cheers, Fabio

[Pydev-users] Pydev 1.5.6 Released (Django Integration)

2010-04-01 Thread Fabio Zadrozny
class Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer Aptana http://aptana.com/python Pydev - Python

Re: [Pydev-users] Debug Output for Remote Debugging?

2010-04-29 Thread Fabio Zadrozny
Hi Seth, Are you doing it in the same machine or across machines? Have you followed the instructions at http://pydev.org/manual_adv_remote_debugger.html ? Cheers, Fabio On Sun, Apr 18, 2010 at 10:28 AM, Seth Martin seth@gmail.com wrote: Hi. I'm having trouble setting up remote

Re: [Pydev-users] Need help for problem with codes

2010-04-30 Thread Fabio Zadrozny
Hello everyone, I am completely new to Python., so just starting to learn with basics. I have some problems while writing simple codes in Eclipse which I am unable to figure out. 1. While using 'len' its giving some error Undefined variable although the script gives the desired result

Re: [Pydev-users] Getting python.exe to let go of my pyd

2010-04-30 Thread Fabio Zadrozny
On Fri, Apr 30, 2010 at 9:01 PM, Ben Sunshine-Hill snef...@gmail.com wrote: I'm concurrently developing a python application and a C++ extension which it uses. This is working well, except for one issue: pydev seems to run a python.exe in the background (presumably to parse the code for

Re: [Pydev-users] Pydev Package Exploring order questions

2010-04-30 Thread Fabio Zadrozny
Hi, I've got two Django projects, one on the trunk, one on a branch.  Both have identical structures, yet for some reason Pydev cannot figure out how to order them alphabetically. In the branch project, 'local_apps' is at the top of the list, and in the trunk project, 'base' is at the top

Re: [Pydev-users] observations from a recent immigrant to eclipse

2010-04-30 Thread Fabio Zadrozny
On Fri, Apr 30, 2010 at 4:28 PM, Glyph Lefkowitz gl...@twistedmatrix.com wrote: Hello there PyDev'ers, I've recently started using Eclipse with PyDev, and (with some help from the Emacs+ plugin) it's working out pretty well.  Still, there are lots of things that I find myself missing or

Re: [Pydev-users] Pydev Package Exploring order questions

2010-05-01 Thread Fabio Zadrozny
Hi, I've got two Django projects, one on the trunk, one on a branch.  Both have identical structures, yet for some reason Pydev cannot figure out how to order them alphabetically. In the branch project, 'local_apps' is at the top of the list, and in the trunk project, 'base' is at the top

Re: [Pydev-users] observations from a recent immigrant to eclipse

2010-05-02 Thread Fabio Zadrozny
On Sun, May 2, 2010 at 3:32 PM, Glyph Lefkowitz gl...@twistedmatrix.com wrote: On Apr 30, 2010, at 9:31 PM, Fabio Zadrozny wrote: So, as it is there's nothing that does what you want automatically. Still, it should not be hard to make up a python script that you run with the heuristic you

Re: [Pydev-users] auto import puts stuff in the wrong place

2010-05-03 Thread Fabio Zadrozny
On Sun, May 2, 2010 at 3:34 PM, Glyph Lefkowitz gl...@twistedmatrix.com wrote: The Auto Import quick fix puts its imports before the module docstring, but in order to be valid, the docstring must be the first thing in the module, before everything including imports. I think this is just a

Re: [Pydev-users] observations from a recent immigrant to eclipse

2010-05-03 Thread Fabio Zadrozny
I think that's a nice idea... Can you create a feature request for that? I'm thinking in the terms of having a new project wizard from existing sources, what do you think? Also, as you already did a script for your needs, it could be nice adding that to the request. Done!

Re: [Pydev-users] Hover and docstring

2010-05-03 Thread Fabio Zadrozny
On Mon, May 3, 2010 at 5:45 AM, Janosch Peters j...@websliders.net wrote: Hi, when I hover over a function or class, I get a tooltip showing the whole definition of the function/class not only the docstring (as I would expect). Is this expected behaviour? I think it would be more useful, if

Re: [Pydev-users] changing the way tabs are named

2010-05-03 Thread Fabio Zadrozny
On Mon, May 3, 2010 at 2:20 AM, Glyph Lefkowitz gl...@twistedmatrix.com wrote: I have a lot of files named util.py.  Is there any way to tell eclipse or pydev to uniquify the names of editor views (tabs?  panes?  windows?)?   Ideally I'd want to name the tabs after the fully-qualified Python

Re: [Pydev-users] pydev vs buildout

2010-05-04 Thread Fabio Zadrozny
On Tue, May 4, 2010 at 2:02 PM, Chris Withers ch...@simplistix.co.uk wrote: Hi All, I have a whole load of projects that are managed with zc.buildout that I'd like to make play nicely with pydev. I'm not a PyDev user but some of the developers I work with are and I'd like to get these

Re: [Pydev-users] Pydev vs Python Interpreter

2010-05-10 Thread Fabio Zadrozny
On Mon, May 10, 2010 at 9:35 AM, Israel Ben Guilherme Fonseca israel@gmail.com wrote: Hi, I read in the past emails about encoding problems with pydev, but no one gave me final answer about this. I have the following premise: If i execute this in the shell python interpreter:

Re: [Pydev-users] Pydev vs Python Interpreter

2010-05-10 Thread Fabio Zadrozny
for it. Cheers, Fabio - Portuguese Off-Topic: Apropósito, pude notar que se formasse na UFSC certo? Sou daqui da UNISUL de Tubarão, não tão longe de lá. :) Pertinho mesmo... ja ta se formando? (me manda e-mail diretamente pra nao ficar na lista). 2010/5/10 Fabio Zadrozny fabi

Re: [Pydev-users] keyboard bindings in Team edit conflicts editor?

2010-05-11 Thread Fabio Zadrozny
On Sun, May 9, 2010 at 9:27 PM, Glyph Lefkowitz gl...@twistedmatrix.com wrote: I've been using the Team Synchronizing view with the Subversive plugin on some Python projects, and I recently encountered some working-copy conflicts. It seems that I can type into Python files in this editor,

Re: [Pydev-users] 1.5.7 skipping breakpoints

2010-05-11 Thread Fabio Zadrozny
On Sun, May 9, 2010 at 4:01 PM, Phillip Heller phel...@me.com wrote: Hello,  I've just upgraded to 1.5.7 on Eclipse 3.5.2 (M20100211-1343). It still seems that breakpoints are skipped.  I have moved the breakpoint to elsewhere in the source file, though unrelated to the subroutine that I

Re: [Pydev-users] is there any way to...

2010-05-18 Thread Fabio Zadrozny
Comments inline On Thu, May 6, 2010 at 5:08 PM, Glyph Lefkowitz gl...@twistedmatrix.com wrote: Is there a PyDev equivalent to the Java feature of select enclosing element?  I frequently find myself wanting to select the current method, inner function, or class. Not currently. Please add a

Re: [Pydev-users] C module gives unresolved import

2010-05-18 Thread Fabio Zadrozny
On Sat, Apr 10, 2010 at 9:51 PM, Nikolaus Rath nikol...@rath.org wrote: 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

Re: [Pydev-users] Remote debugging windows - linux

2010-05-25 Thread Fabio Zadrozny
On Mon, May 24, 2010 at 8:22 AM, Thomas Johnsson tho...@skri.net wrote: This is a question about the way forward, and a request for advice regarding remote debugging between window and linux. For ourselves internally, and for our customers, we are using eclipse+pydev+pydevcarm as the Python

Re: [Pydev-users] [Users] Configure interpreter for all users?

2010-06-01 Thread Fabio Zadrozny
On Fri, May 28, 2010 at 5:24 AM, Glyph Lefkowitz gl...@twistedmatrix.com wrote: On May 28, 2010, at 3:18 AM, SourceForge.net wrote: I have a shared eclipse+pydev installation on a multiuser Linux system. How can I configure preset interpreters for all users so everyone doesn\'t  have to do it

Re: [Pydev-users] my eclipse+pydev cannot catch my code update

2010-06-06 Thread Fabio Zadrozny
On Fri, Jun 4, 2010 at 12:36 AM, liu YongFeng search...@gmail.com wrote: Dear, It's like this. I run the code in eclipse - I add one more sentence, such as print something, in the code - I run the code again - it print out nothing, which means it still execute old code - I close eclipse and

Re: [Pydev-users] Python REPL inside eclipse, for plugin script development?

2010-06-10 Thread Fabio Zadrozny
On Thu, Jun 10, 2010 at 2:22 AM, Glyph Lefkowitz gl...@twistedmatrix.comwrote: I'd like to start writing scripts for PyDev, but the Eclipse API documentation is not geared for Python users, and nothing I've tried provides autocompletion over the Jython-Java bridge. Is there a REPL that I

[Pydev-users] Pydev 1.5.8 Released

2010-06-28 Thread Fabio Zadrozny
-- making Eclipse a first class Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer Aptana http://aptana.com/ Pydev

Re: [Pydev-users] lxml library is not linked properly in Eclipse/PyDev, but it's ok in the command shell

2010-07-05 Thread Fabio Zadrozny
Here is the PYTHONPATH from Eclipse: /home/yatuga/.eclipse/org.eclipse.platform_3.5.0_155965261/plugins/org.python.pydev_1.5.9.2010063001/PySrc /usr/lib/pymodules/python2.6 /usr/lib/python2.5/site-packages/lxml /usr/lib/python2.6/lib-old /usr/lib/python2.6/lib-dynload

[Pydev-users] Pydev 1.6.0 Released

2010-07-20 Thread Fabio Zadrozny
and many others. Cheers, -- Fabio Zadrozny -- Software Developer Aptana http://aptana.com/ Pydev - Python Development Environment for Eclipse http://pydev.org http://pydev.blogspot.com

Re: [Pydev-users] grammars for 2.7 and 3.1?

2010-07-22 Thread Fabio Zadrozny
On Wed, Jul 21, 2010 at 7:52 PM, Nathan Schneider nat...@cmu.edu wrote: Hi, I'd like to request the addition of grammars for Python 2.7 and 3.1 in PyDev. Currently I'm using the 3.0 grammar for 2.7 code, which works for the most part, but is still showing errors for dict comprehensions (as

Re: [Pydev-users] closing old launch before starting new

2010-07-28 Thread Fabio Zadrozny
In the latest nightly build (1.6.1) you can do (in a pydev editor): Ctrl+Shift+F9 to relaunch the last pydev launch Ctrl+Alt+F9 to kill all launches Additionally, there's also a new button in the console to relaunch it. Cheers, Fabio On Wed, Jul 28, 2010 at 6:33 AM, Rich E

[Pydev-users] Pydev 1.6.1 Released

2010-08-03 Thread Fabio Zadrozny
that enables users to use Eclipse for Python, Jython and IronPython development -- making Eclipse a first class Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny

Re: [Pydev-users] [Users] RE: Can't find code analysis in Pydev prefe...

2010-08-11 Thread Fabio Zadrozny
The following forum message was posted by twoelz at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/3740259: Ok, just added the Pydev nightly repository and installed 1.5.8 and voilá, code analysis is there! It wasn\'t there on the non-nightly latest stable Pydev 1.5.7!

Re: [Pydev-users] nx.condensation

2010-08-16 Thread Fabio Zadrozny
On Wed, Aug 11, 2010 at 10:00 AM, Luis Quesada lques...@4c.ucc.ie wrote: Dear all, I am not sure whether the following is a problem on my side or a bug of Pydev. The following program works fine when executed from the prompt: import networkx as nx DG=nx.DiGraph() CDG=nx.condensation(DG)

Re: [Pydev-users] Inter-project references

2010-08-16 Thread Fabio Zadrozny
On Mon, Aug 16, 2010 at 10:33 AM, Ben Sunshine-Hill snef...@gmail.com wrote: On Mon, Aug 16, 2010 at 7:37 AM, Fabio Zadrozny fabi...@gmail.com wrote: In the 'project properties' there's a 'project references' item in the tree, that's where you should put the referenced projects (so that one

Re: [Pydev-users] nx.condensation

2010-08-19 Thread Fabio Zadrozny
On Mon, Aug 16, 2010 at 10:07 AM, Luis Quesada lques...@4c.ucc.ie wrote: On 16/08/10 13:59, Fabio Zadrozny wrote: On Wed, Aug 11, 2010 at 10:00 AM, Luis Quesadalques...@4c.ucc.ie  wrote: Dear all, I am not sure whether the following is a problem on my side or a bug of Pydev. The following

Re: [Pydev-users] Run configuration switches to wrong directory

2010-08-19 Thread Fabio Zadrozny
On Sat, Aug 14, 2010 at 12:55 PM, Nikolaus Rath nikol...@rath.org wrote: Hello, For some of my projects, the Working Directory setting of Run Configurations dialog does not work properly. When I set the working directory to Default (with ${project_loc} as the greyed out value), the script

Re: [Pydev-users] nx.condensation

2010-08-20 Thread Fabio Zadrozny
On Fri, Aug 20, 2010 at 7:29 AM, Luis Quesada l.ques...@4c.ucc.ie wrote: Well,I just installed the latest version of networkx (http://pypi.python.org/packages/2.6/n/networkx/networkx-1.2-py2.6.egg#md5=bc60e43a7d3a8a63b5d6d422c329f373) and the issue is gone now. So please ignore my previous

[Pydev-users] Pydev 1.6.2 Released

2010-09-07 Thread Fabio Zadrozny
Python IDE -- It comes with many goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer Aptana http://aptana.com/ Pydev - Python Development

Re: [Pydev-users] grammars for 2.7 and 3.1?

2010-09-09 Thread Fabio Zadrozny
On Wed, Sep 8, 2010 at 11:03 AM, Nathan Schneider nat...@cmu.edu wrote: Thanks for adding support for the 2.7 grammar. However, while 'with' statements having multiple entries work fine, I'm still getting code analysis errors for dict comprehensions. For example:

Re: [Pydev-users] grammars for 2.7 and 3.1?

2010-09-09 Thread Fabio Zadrozny
On Thu, Sep 9, 2010 at 5:57 PM, Nathan Schneider nat...@cmu.edu wrote: There appears to be one already: http://sourceforge.net/tracker/index.php?func=detailaid=2965307group_id=85796atid=577329 On Thu, Sep 9, 2010 at 3:34 PM, Fabio Zadrozny fabi...@gmail.com wrote: On Wed, Sep 8, 2010 at 11

Re: [Pydev-users] Pydev 1.6.2, aptana studio 3 beta, dark theme and mark occurences

2010-09-16 Thread Fabio Zadrozny
Recently I moved from generic eclipse + pydev to aptana studio 3 beta + pydev, and I've encountered one problem: when using dark theme which is default for aptana text highlighted by mark occurrences is barely readable ( see attached screenshot ). I checked in preferences and I couldn't find

[Pydev-users] Pydev 1.6.3 Released

2010-10-05 Thread Fabio Zadrozny
, refactor, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer Aptana http://aptana.com/ Pydev - Python Development Environment for Eclipse http://pydev.org http://pydev.blogspot.com

Re: [Pydev-users] Pylint no longer called

2010-10-26 Thread Fabio Zadrozny
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, and PyLint was no longer being called. I did

Re: [Pydev-users] Pylint no longer called

2010-10-28 Thread Fabio Zadrozny
Number 3 was the problem. I have a combined CDT and PyDev project and turned auto build off, because I did not want to wait for a time consuming make call every time I run a Python script. I suppose there is no way to get only PyDev to auto build? I was taking a look at that and couldn't

[Pydev-users] Pydev 1.6.4 Released

2011-01-01 Thread Fabio Zadrozny
, debug and many others. Cheers, -- Fabio Zadrozny -- Software Developer Aptana http://aptana.com/ Pydev - Python Development Environment for Eclipse http://pydev.org http://pydev.blogspot.com

Re: [Pydev-users] How can I make PyDev use a different interpreter?

2011-01-26 Thread Fabio Zadrozny
Pydev finds out about the interpreter by running python_executable_provided plugins/org.python.pydev_xxx/PySrc/interpreterInfo.py And gets the actual executable in that script accessing 'import sys;print(sys.executable)... in your case, your custom interpreter should have the sys.executable as

Re: [Pydev-users] .pth files

2011-02-19 Thread Fabio Zadrozny
On Fri, Feb 18, 2011 at 6:17 PM, Luke Crouch luke.cro...@gmail.com wrote: I have a pydev project named 'kuma' with a vendor/kuma.pth file like so: packages packages/pytz packages/coverage ... src src/django-cronjobs src/django-cache-machine I tried adding vendor/ to the project

Re: [Pydev-users] Debug Error

2011-02-22 Thread Fabio Zadrozny
On Tue, Feb 22, 2011 at 12:14 PM, Clayton Keller inetad...@ruraltel.net wrote: When attempting to debug code I receive a dialog box indicating Error setting breakpoints with the following details: Error logged from Pydev Debug: org.eclipse.core.internal.dtree.NoDataDeltaNode cannot be cast to

Re: [Pydev-users] .pth files

2011-02-24 Thread Fabio Zadrozny
to .pydevproject's pydev_pathproperty, but I think this would be a great feature to add in PyDev itself - Add .pth file in addition to Add source folder, Add zip/jar/egg and Add based on variable -L On Sat, Feb 19, 2011 at 9:23 AM, Fabio Zadrozny fabi...@gmail.com wrote: On Fri, Feb 18, 2011 at 6

<    1   2   3   >