<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-3295</id>
	<title>Nabble - pydev-code</title>
	<updated>2009-11-26T11:09:54Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/pydev-code-f3295.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/pydev-code-f3295.html" />
	<subtitle type="html">Mailing list archive for pydev-code</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26533815</id>
	<title>Re: org.python.pydev vs com.python.pydev</title>
	<published>2009-11-26T11:09:54Z</published>
	<updated>2009-11-26T11:09:54Z</updated>
	<author>
		<name>Leo Soto M.</name>
	</author>
	<content type="html">On Thu, Nov 26, 2009 at 3:33 PM, Fabio Zadrozny &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26533815&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabiofz@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;[...]
&lt;br&gt;&amp;gt; The com packages are related to the features that were previously from
&lt;br&gt;&amp;gt; pydev extensions (mostly code-analysis / code-completion using all the
&lt;br&gt;&amp;gt; tokens in the workspace / remote debugger / rename refactoring).
&lt;br&gt;&lt;br&gt;Oh, I see, that's why they seem alien to me.
&lt;br&gt;&lt;br&gt;BTW, kudos for opensourcing that part of PyDev!
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Leo Soto M.
&lt;br&gt;&lt;a href=&quot;http://blog.leosoto.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.leosoto.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26533815&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/org.python.pydev-vs-com.python.pydev-tp26531624p26533815.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26533667</id>
	<title>Re: Running the tests</title>
	<published>2009-11-26T10:58:07Z</published>
	<updated>2009-11-26T10:58:07Z</updated>
	<author>
		<name>Fabio Zadrozny</name>
	</author>
	<content type="html">Hi Leo,
&lt;br&gt;&lt;br&gt;On Thu, Nov 26, 2009 at 2:01 PM, Leo Soto M. &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26533667&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;leo.soto@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm in the process of &amp;quot;rebasing&amp;quot; my Django support prototype done in
&lt;br&gt;&amp;gt; March to the current development version. This time I'm aiming a bit
&lt;br&gt;&amp;gt; higher, which means that I'd love to see the code on Pydev itself.
&lt;br&gt;&amp;gt; Which means that I need to polish the code a lot and write *tests* for
&lt;br&gt;&amp;gt;  it. And make sure I'm not breaking anything, of course :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So here is my question:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; How is the PyDev test suite supposed to be ran?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Right now I'm running the JUnit suite from
&lt;br&gt;&amp;gt; org.python.pydev.runalltests.AllTests but I'm getting lots of errors
&lt;br&gt;&amp;gt; (~250). Some of them are surely due to not having Python3 nor
&lt;br&gt;&amp;gt; IronPython on my system but still, I'd like to know if I'm running the
&lt;br&gt;&amp;gt; test suite in the right way.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; BTW, I had to run the suite as &amp;quot;JUnit Test&amp;quot; and not as a &amp;quot;JUnit
&lt;br&gt;&amp;gt; Plug-in Test&amp;quot; since the last one isn't working at all for me (but
&lt;br&gt;&amp;gt; seems like a OSX/JDK specific problem.
&lt;/div&gt;&lt;br&gt;&lt;br&gt;That's the correct way to run them -- the one to run is
&lt;br&gt;\com.python.pydev.runalltests\src\com\python\pydev\runalltests2\AllTests.java
&lt;br&gt;-- and the AllWorkbenchTests needs to be run as a Plug-in test (but
&lt;br&gt;that one is kind of brittle right now because of some threading
&lt;br&gt;issues).
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Fabio
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26533667&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Running-the-tests-tp26531471p26533667.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26533390</id>
	<title>Re: org.python.pydev vs com.python.pydev</title>
	<published>2009-11-26T10:33:47Z</published>
	<updated>2009-11-26T10:33:47Z</updated>
	<author>
		<name>Fabio Zadrozny-2</name>
	</author>
	<content type="html">Hi Leo,
&lt;br&gt;&lt;br&gt;On Thu, Nov 26, 2009 at 2:11 PM, Leo Soto M. &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26533390&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;leo.soto@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Thu, Nov 26, 2009 at 1:01 PM, Leo Soto M. &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26533390&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;leo.soto@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [...]
&lt;br&gt;&amp;gt;&amp;gt; Right now I'm running the JUnit suite from
&lt;br&gt;&amp;gt;&amp;gt; org.python.pydev.runalltests.AllTests
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Oh and I just realized that there is a com.python.pydev.runalltests
&lt;br&gt;&amp;gt; project too. In fact, there are many projects with the
&lt;br&gt;&amp;gt; com.python.pydev/org.python.pydev duplication.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Which one is the preferred namespace? If I want to patch the
&lt;br&gt;&amp;gt; pydev.debug project, should I write the patch against
&lt;br&gt;&amp;gt; org.python.pydev.debug or com.python.pydev.debug?
&lt;/div&gt;&lt;br&gt;The runtests to be used is com.python.pydev.runalltests (which runs
&lt;br&gt;all the org and com tests). As for the patching, usually the org
&lt;br&gt;packages should be used.
&lt;br&gt;&lt;br&gt;The com packages are related to the features that were previously from
&lt;br&gt;pydev extensions (mostly code-analysis / code-completion using all the
&lt;br&gt;tokens in the workspace / remote debugger / rename refactoring).
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Fabio
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Leo Soto M.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://blog.leosoto.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.leosoto.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26533390&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26533390&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/org.python.pydev-vs-com.python.pydev-tp26531624p26533390.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531624</id>
	<title>org.python.pydev vs com.python.pydev</title>
	<published>2009-11-26T08:11:57Z</published>
	<updated>2009-11-26T08:11:57Z</updated>
	<author>
		<name>Leo Soto M.</name>
	</author>
	<content type="html">On Thu, Nov 26, 2009 at 1:01 PM, Leo Soto M. &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26531624&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;leo.soto@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;[...]
&lt;br&gt;&amp;gt; Right now I'm running the JUnit suite from
&lt;br&gt;&amp;gt; org.python.pydev.runalltests.AllTests
&lt;br&gt;&lt;br&gt;Oh and I just realized that there is a com.python.pydev.runalltests
&lt;br&gt;project too. In fact, there are many projects with the
&lt;br&gt;com.python.pydev/org.python.pydev duplication.
&lt;br&gt;&lt;br&gt;Which one is the preferred namespace? If I want to patch the
&lt;br&gt;pydev.debug project, should I write the patch against
&lt;br&gt;org.python.pydev.debug or com.python.pydev.debug?
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;-- 
&lt;br&gt;Leo Soto M.
&lt;br&gt;&lt;a href=&quot;http://blog.leosoto.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.leosoto.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26531624&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/org.python.pydev-vs-com.python.pydev-tp26531624p26531624.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531471</id>
	<title>Running the tests</title>
	<published>2009-11-26T08:01:00Z</published>
	<updated>2009-11-26T08:01:00Z</updated>
	<author>
		<name>Leo Soto M.</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I'm in the process of &amp;quot;rebasing&amp;quot; my Django support prototype done in
&lt;br&gt;March to the current development version. This time I'm aiming a bit
&lt;br&gt;higher, which means that I'd love to see the code on Pydev itself.
&lt;br&gt;Which means that I need to polish the code a lot and write *tests* for
&lt;br&gt;&amp;nbsp;it. And make sure I'm not breaking anything, of course :)
&lt;br&gt;&lt;br&gt;So here is my question:
&lt;br&gt;&lt;br&gt;How is the PyDev test suite supposed to be ran?
&lt;br&gt;&lt;br&gt;Right now I'm running the JUnit suite from
&lt;br&gt;org.python.pydev.runalltests.AllTests but I'm getting lots of errors
&lt;br&gt;(~250). Some of them are surely due to not having Python3 nor
&lt;br&gt;IronPython on my system but still, I'd like to know if I'm running the
&lt;br&gt;test suite in the right way.
&lt;br&gt;&lt;br&gt;BTW, I had to run the suite as &amp;quot;JUnit Test&amp;quot; and not as a &amp;quot;JUnit
&lt;br&gt;Plug-in Test&amp;quot; since the last one isn't working at all for me (but
&lt;br&gt;seems like a OSX/JDK specific problem.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;-- 
&lt;br&gt;Leo Soto M.
&lt;br&gt;&lt;a href=&quot;http://blog.leosoto.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.leosoto.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26531471&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Running-the-tests-tp26531471p26531471.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26448648</id>
	<title>Re: Default argument values in Code completion</title>
	<published>2009-11-20T11:02:58Z</published>
	<updated>2009-11-20T11:02:58Z</updated>
	<author>
		<name>vincent lapointe</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp;
&lt;br&gt;Ticket done.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Thanks
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Vincent
&lt;br&gt;&lt;br&gt;&lt;br&gt;----------------------------------------
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Date: Thu, 19 Nov 2009 20:22:14 -0200
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448648&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabioz@...&lt;/a&gt;
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448648&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: Re: [Pydev-code] Default argument values in Code completion
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; See: &lt;a href=&quot;http://pydev.org/faq.html#how_do_i_report_a_feature_request&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pydev.org/faq.html#how_do_i_report_a_feature_request&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Fabio
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Thu, Nov 19, 2009 at 8:06 PM, vincent lapointe
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Where should I make a feature request?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ----------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Date: Thu, 19 Nov 2009 17:34:20 -0200
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448648&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabioz@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448648&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Subject: Re: [Pydev-code] Default argument values in Code completion
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hi Vincent,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; This is not planned.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Please add a feature request for that (that would be added as a
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; preference -- in general, I think the current behavior is nicer --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; although it should appear in the tooltip).
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Fabio
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On Thu, Nov 19, 2009 at 4:20 PM, vincent lapointe
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I have the following function define in Python:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; def toto(a=1):
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;quot;this is a function with a default value for argument 1&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; print a
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Then when working with pydev, many features of pydev don't take care of the default value.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Example:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; 1- When typing the name of the function in the pydev console, pydev show a code completion dialog but the default argument doesn't appear. See attachment codeCompletion.bmp
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; 2- Then when I press the carriage return key (on the completion dialog), pydev adds argument of the function without taking care of my default argument. See attachment codeCompletion2.bmp.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I think I would prefer that Pydev doesn't add argument with default value when pressing return key.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Also note that the tooltip that appears above the code doesn't mention the default argument
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; 3- When I use the pydev editor, I have similar behaviours for code completion
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Is this feature planned in a next release?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Vincent
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; _________________________________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Windows Live: Keep your friends up to date with what you do online.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://go.microsoft.com/?linkid=9691815&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=9691815&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Crystal Reports now. &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448648&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Crystal Reports now. &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448648&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _________________________________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Windows Live: Make it easier for your friends to see what you’re up to on Facebook.
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://go.microsoft.com/?linkid=9691816&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=9691816&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt; Crystal Reports now. &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448648&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now. &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448648&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&amp;nbsp;		 	 &amp;nbsp; 		 &amp;nbsp;
&lt;/div&gt;_________________________________________________________________
&lt;br&gt;Windows Live: Friends get your Flickr, Yelp, and Digg updates when they e-mail you.
&lt;br&gt;&lt;a href=&quot;http://go.microsoft.com/?linkid=9691817&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=9691817&lt;/a&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448648&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Default-argument-values-in-Code-completion-tp26431407p26448648.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26435183</id>
	<title>Re: Default argument values in Code completion</title>
	<published>2009-11-19T14:22:14Z</published>
	<updated>2009-11-19T14:22:14Z</updated>
	<author>
		<name>Fabio Zadrozny</name>
	</author>
	<content type="html">See: &lt;a href=&quot;http://pydev.org/faq.html#how_do_i_report_a_feature_request&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pydev.org/faq.html#how_do_i_report_a_feature_request&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Fabio
&lt;br&gt;&lt;br&gt;On Thu, Nov 19, 2009 at 8:06 PM, vincent lapointe
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26435183&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lapointe_vincent_1975@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Where should I make a feature request?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ----------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; Date: Thu, 19 Nov 2009 17:34:20 -0200
&lt;br&gt;&amp;gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26435183&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabioz@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26435183&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; Subject: Re: [Pydev-code] Default argument values in Code completion
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi Vincent,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; This is not planned.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Please add a feature request for that (that would be added as a
&lt;br&gt;&amp;gt;&amp;gt; preference -- in general, I think the current behavior is nicer --
&lt;br&gt;&amp;gt;&amp;gt; although it should appear in the tooltip).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Fabio
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Thu, Nov 19, 2009 at 4:20 PM, vincent lapointe
&lt;br&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I have the following function define in Python:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; def toto(a=1):
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;quot;this is a function with a default value for argument 1&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; print a
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Then when working with pydev, many features of pydev don't take care of the default value.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Example:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 1- When typing the name of the function in the pydev console, pydev show a code completion dialog but the default argument doesn't appear. See attachment codeCompletion.bmp
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 2- Then when I press the carriage return key (on the completion dialog), pydev adds argument of the function without taking care of my default argument. See attachment codeCompletion2.bmp.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I think I would prefer that Pydev doesn't add argument with default value when pressing return key.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Also note that the tooltip that appears above the code doesn't mention the default argument
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 3- When I use the pydev editor, I have similar behaviours for code completion
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Is this feature planned in a next release?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Vincent
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _________________________________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Windows Live: Keep your friends up to date with what you do online.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://go.microsoft.com/?linkid=9691815&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=9691815&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Crystal Reports now. &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26435183&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt; Crystal Reports now. &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26435183&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt; _________________________________________________________________
&lt;br&gt;&amp;gt; Windows Live: Make it easier for your friends to see what you’re up to on Facebook.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://go.microsoft.com/?linkid=9691816&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=9691816&lt;/a&gt;&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26435183&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26435183&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Default-argument-values-in-Code-completion-tp26431407p26435183.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26434955</id>
	<title>Re: Default argument values in Code completion</title>
	<published>2009-11-19T14:06:35Z</published>
	<updated>2009-11-19T14:06:35Z</updated>
	<author>
		<name>vincent lapointe</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp;
&lt;br&gt;Hi,
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Where should I make a feature request?
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Thanks
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;----------------------------------------
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Date: Thu, 19 Nov 2009 17:34:20 -0200
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26434955&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabioz@...&lt;/a&gt;
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26434955&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: Re: [Pydev-code] Default argument values in Code completion
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi Vincent,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This is not planned.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Please add a feature request for that (that would be added as a
&lt;br&gt;&amp;gt; preference -- in general, I think the current behavior is nicer --
&lt;br&gt;&amp;gt; although it should appear in the tooltip).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Fabio
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Thu, Nov 19, 2009 at 4:20 PM, vincent lapointe
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I have the following function define in Python:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; def toto(a=1):
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;this is a function with a default value for argument 1&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; print a
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Then when working with pydev, many features of pydev don't take care of the default value.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Example:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 1- When typing the name of the function in the pydev console, pydev show a code completion dialog but the default argument doesn't appear. See attachment codeCompletion.bmp
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 2- Then when I press the carriage return key (on the completion dialog), pydev adds argument of the function without taking care of my default argument. See attachment codeCompletion2.bmp.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I think I would prefer that Pydev doesn't add argument with default value when pressing return key.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Also note that the tooltip that appears above the code doesn't mention the default argument
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 3- When I use the pydev editor, I have similar behaviours for code completion
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Is this feature planned in a next release?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Vincent
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _________________________________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Windows Live: Keep your friends up to date with what you do online.
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://go.microsoft.com/?linkid=9691815&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=9691815&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt; Crystal Reports now. &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26434955&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now. &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26434955&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&amp;nbsp;		 	 &amp;nbsp; 		 &amp;nbsp;
&lt;/div&gt;_________________________________________________________________
&lt;br&gt;Windows Live: Make it easier for your friends to see what you’re up to on Facebook.
&lt;br&gt;&lt;a href=&quot;http://go.microsoft.com/?linkid=9691816&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=9691816&lt;/a&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26434955&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Default-argument-values-in-Code-completion-tp26431407p26434955.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26432668</id>
	<title>Re: Default argument values in Code completion</title>
	<published>2009-11-19T11:34:20Z</published>
	<updated>2009-11-19T11:34:20Z</updated>
	<author>
		<name>Fabio Zadrozny</name>
	</author>
	<content type="html">Hi Vincent,
&lt;br&gt;&lt;br&gt;This is not planned.
&lt;br&gt;&lt;br&gt;Please add a feature request for that (that would be added as a
&lt;br&gt;preference -- in general, I think the current behavior is nicer --
&lt;br&gt;although it should appear in the tooltip).
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Fabio
&lt;br&gt;&lt;br&gt;On Thu, Nov 19, 2009 at 4:20 PM, vincent lapointe
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26432668&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lapointe_vincent_1975@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have the following function define in Python:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; def toto(a=1):
&lt;br&gt;&amp;gt;    &amp;quot;this is a function with a default value for argument 1&amp;quot;
&lt;br&gt;&amp;gt;    print a
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Then when working with pydev, many features of pydev don't take care of the default value.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Example:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1- When typing the name of the function in the pydev console, pydev show a code completion dialog but the default argument doesn't appear. See attachment codeCompletion.bmp
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2- Then when I press the carriage return key (on the completion dialog), pydev adds argument of the function without taking care of my default argument. See attachment codeCompletion2.bmp.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I think I would prefer that Pydev doesn't add argument with default value when pressing return key.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Also note that the tooltip that appears above the code doesn't mention the default argument
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 3- When I use the pydev editor, I have similar behaviours for code completion
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Is this feature planned in a next release?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Vincent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _________________________________________________________________
&lt;br&gt;&amp;gt; Windows Live: Keep your friends up to date with what you do online.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://go.microsoft.com/?linkid=9691815&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=9691815&lt;/a&gt;&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26432668&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26432668&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Default-argument-values-in-Code-completion-tp26431407p26432668.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26431407</id>
	<title>Default argument values in Code completion</title>
	<published>2009-11-19T10:20:55Z</published>
	<updated>2009-11-19T10:20:55Z</updated>
	<author>
		<name>vincent lapointe</name>
	</author>
	<content type="html">&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;I have the following function define in Python:
&lt;br&gt;&amp;nbsp;
&lt;br&gt;def toto(a=1):
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;quot;this is a function with a default value for argument 1&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; print a
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Then when working with pydev, many features of pydev don't take care of the default value.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Example:
&lt;br&gt;&amp;nbsp;
&lt;br&gt;1- When typing the name of the function in the pydev console, pydev show a code completion dialog but the default argument doesn't appear. See attachment codeCompletion.bmp
&lt;br&gt;&amp;nbsp;
&lt;br&gt;2- Then when I press the carriage return key (on the completion dialog), pydev adds argument of the function without taking care of my default argument. See attachment codeCompletion2.bmp. &amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;I think I would prefer that Pydev doesn't add argument with default value when pressing return key.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Also note that the tooltip that appears above the code doesn't mention the default argument
&lt;br&gt;&amp;nbsp;
&lt;br&gt;3- When I use the pydev editor, I have similar behaviours for code completion
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Is this feature planned in a next release?
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Thanks
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Vincent
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; 		 	 &amp;nbsp; 		 &amp;nbsp;
&lt;br&gt;_________________________________________________________________
&lt;br&gt;Windows Live: Keep your friends up to date with what you do online.
&lt;br&gt;&lt;a href=&quot;http://go.microsoft.com/?linkid=9691815&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=9691815&lt;/a&gt;&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26431407&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;codeCompletion.bmp&lt;/strong&gt; (590K) &lt;a href=&quot;http://old.nabble.com/attachment/26431407/0/codeCompletion.bmp&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;codeCompletion2.bmp&lt;/strong&gt; (24K) &lt;a href=&quot;http://old.nabble.com/attachment/26431407/1/codeCompletion2.bmp&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Default-argument-values-in-Code-completion-tp26431407p26431407.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26409871</id>
	<title>Re: Regression testing of pydev-related plugins</title>
	<published>2009-11-18T07:05:46Z</published>
	<updated>2009-11-18T07:05:46Z</updated>
	<author>
		<name>Dennis Doubleday</name>
	</author>
	<content type="html">&lt;br&gt;We use the WindowTester tool from Instantiations to test our plugins. It is a great tool. And you can run it on your build machine, but your build machine has to have a display to test GUI behavior.
&lt;br&gt;&lt;br&gt;Dennis Doubleday 
&lt;br&gt;Enterprise Software Architect
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Vocollect, Inc. 
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Thomas Johnsson [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26409871&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thomas@...&lt;/a&gt;] 
&lt;br&gt;Sent: Wednesday, November 18, 2009 9:34 AM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26409871&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;Subject: [Pydev-code] Regression testing of pydev-related plugins
&lt;br&gt;&lt;br&gt;&lt;br&gt;Now that we have written a plugin which is an add-on to pydev, the issue 
&lt;br&gt;of regression testing has come up ...
&lt;br&gt;When it comes to regression testing of such plug-ins, what approach 
&lt;br&gt;would you recommend?
&lt;br&gt;Tests need to be able to run batch, e.g. nighly, and test gui behaviour 
&lt;br&gt;in particular.
&lt;br&gt;Words of advice most welcomed!
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;-- Thomas Johnsson
&lt;br&gt;Jeppesen Systems, Göteborg, Sweden
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26409871&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26409871&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Regression-testing-of-pydev-related-plugins-tp26409426p26409871.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26409426</id>
	<title>Regression testing of pydev-related plugins</title>
	<published>2009-11-18T06:33:42Z</published>
	<updated>2009-11-18T06:33:42Z</updated>
	<author>
		<name>Thomas Johnsson</name>
	</author>
	<content type="html">Now that we have written a plugin which is an add-on to pydev, the issue 
&lt;br&gt;of regression testing has come up ...
&lt;br&gt;When it comes to regression testing of such plug-ins, what approach 
&lt;br&gt;would you recommend?
&lt;br&gt;Tests need to be able to run batch, e.g. nighly, and test gui behaviour 
&lt;br&gt;in particular.
&lt;br&gt;Words of advice most welcomed!
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;-- Thomas Johnsson
&lt;br&gt;Jeppesen Systems, Göteborg, Sweden
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26409426&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Regression-testing-of-pydev-related-plugins-tp26409426p26409426.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26399541</id>
	<title>Pydev 1.5.1 Released</title>
	<published>2009-11-17T15:09:07Z</published>
	<updated>2009-11-17T15:09:07Z</updated>
	<author>
		<name>Fabio Zadrozny-3</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&lt;br&gt;Pydev 1.5.1 has been released
&lt;br&gt;&lt;br&gt;Details on Pydev: &lt;a href=&quot;http://pydev.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pydev.org&lt;/a&gt;&lt;br&gt;Details on its development: &lt;a href=&quot;http://pydev.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pydev.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;Release Highlights:
&lt;br&gt;-------------------------------
&lt;br&gt;&lt;br&gt;* Improvements in the AST rewriter
&lt;br&gt;* Improvements on the refactoring engine:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o No longer using BRM
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Merged with the latest PEPTIC
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Inline local available
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Extract method bug-fixes
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Extract local on multi-line
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Generating properties using coding style defined in preferences
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Add after current method option added to extract method
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o A bunch of other corner-case situations were fixed
&lt;br&gt;* Bug-fixes:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Minor editor improvements
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Adding default forced builtins on all platforms (e.g.: time,
&lt;br&gt;math, etc) which wouldn't be on sys.builtin_module_names on some
&lt;br&gt;python installations
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Adding 'numpy' and 'Image' to the forced builtins always
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Ctrl+1: Generate docstring minor fixes
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Ctrl+1: Assign to local now follows coding style preferences properly
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Exponential with uppercase E working on code-formatting
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o When a set/get method is found in code-completion for a java
&lt;br&gt;class an NPE is no longer thrown
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Backspace properly treated in block mode
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Setting IRONPYTHONPATH when dealing with Iron Python (projects
&lt;br&gt;could not be referenced)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o No longer giving spurious 'statement has no effect' inside of
&lt;br&gt;lambda and decorators
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Fixed new exec in python 3k
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Fixed NPE when breakpoint is related to a resource in a removed project
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Fixed import problem on regexp that could lead to a recursion.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o No longer giving NPE when debugging with the register view open
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o List access be treated as __getitem__() in the list -- patch
&lt;br&gt;from Tassilo Barth
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; o Fix for invalid auto-self added when typing
&lt;br&gt;&lt;br&gt;&lt;br&gt;What is PyDev?
&lt;br&gt;---------------------------
&lt;br&gt;&lt;br&gt;PyDev is a plugin that enables users to use Eclipse for Python, Jython
&lt;br&gt;and Iron Python development -- making Eclipse a first class Python IDE
&lt;br&gt;-- It comes with many goodies such as code completion, syntax
&lt;br&gt;highlighting, syntax analysis, refactor, debug and many others.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Fabio Zadrozny
&lt;br&gt;------------------------------------------------------
&lt;br&gt;Software Developer
&lt;br&gt;&lt;br&gt;Aptana
&lt;br&gt;&lt;a href=&quot;http://aptana.com/python&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://aptana.com/python&lt;/a&gt;&lt;br&gt;&lt;br&gt;Pydev - Python Development Environment for Eclipse
&lt;br&gt;&lt;a href=&quot;http://pydev.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pydev.org&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://pydev.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pydev.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26399541&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pydev-1.5.1-Released-tp26399541p26399541.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26234181</id>
	<title>Re: How to refresh the interpreter</title>
	<published>2009-11-06T07:47:34Z</published>
	<updated>2009-11-06T07:47:34Z</updated>
	<author>
		<name>vincent lapointe</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26234181&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cfb578b20911051457s6c11b8b8q45ef3aa16ed6c29d@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=&amp;quot;iso-8859-1&amp;quot;
&lt;br&gt;Content-Transfer-Encoding: quoted-printable
&lt;br&gt;MIME-Version: 1.0
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi Fabio=2C
&lt;br&gt;=20
&lt;br&gt;I made the modifications based on what you suggested.
&lt;br&gt;=20
&lt;br&gt;However=2C when I apply the changes=2C all opened projects with python natu=
&lt;br&gt;re throw the following exception. (Note that pydev console also generated a=
&lt;br&gt;&amp;nbsp;similar exception)
&lt;br&gt;=20
&lt;br&gt;Invalid interpreter: Default configured for project: Project1.
&lt;br&gt;org.python.pydev.core.ProjectMisconfiguredException: Invalid interpreter: D=
&lt;br&gt;efault configured for project: Project1.
&lt;br&gt;&amp;nbsp;at org.python.pydev.plugin.nature.PythonNature.getProjectInterpreter(Pytho=
&lt;br&gt;nNature.java:1051)
&lt;br&gt;&amp;nbsp;at org.python.pydev.plugin.nature.PythonNature.getConfigErrorsAndInfo(Pyth=
&lt;br&gt;onNature.java:1100)
&lt;br&gt;&amp;nbsp;at org.python.pydev.navigator.ProjectInfoForPackageExplorer.getConfigError=
&lt;br&gt;sAndInfo(ProjectInfoForPackageExplorer.java:79)
&lt;br&gt;&amp;nbsp;at org.python.pydev.navigator.ProjectInfoForPackageExplorer.recreateInfo(P=
&lt;br&gt;rojectInfoForPackageExplorer.java:53)
&lt;br&gt;&amp;nbsp;at org.python.pydev.navigator.PythonBaseModelProvider.internalDoNotifyPyth=
&lt;br&gt;onPathRebuilt(PythonBaseModelProvider.java:289)
&lt;br&gt;&amp;nbsp;at org.python.pydev.navigator.PythonBaseModelProvider$Updater.run(PythonBa=
&lt;br&gt;seModelProvider.java:193)
&lt;br&gt;&amp;nbsp;at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
&lt;br&gt;&lt;br&gt;Then=2C if I close my rcp application and reopen it=2C the projects with py=
&lt;br&gt;thon nature and the pydev console work correctly=20
&lt;br&gt;=20
&lt;br&gt;Moreover=2C I checked the configuration of the interpreter in the preferenc=
&lt;br&gt;e page and all settings are exactly the same as when configured automatical=
&lt;br&gt;ly. Note that I set an empty dll list in the InterpreterInfo.
&lt;br&gt;=20
&lt;br&gt;So=2C is it normal that I should close my rcp application before the new in=
&lt;br&gt;terpreter works correctly?
&lt;br&gt;=20
&lt;br&gt;=20
&lt;br&gt;Thank again
&lt;br&gt;=20
&lt;br&gt;Vincent
&lt;br&gt;&amp;nbsp; 		 	 &amp;nbsp; 		 =20
&lt;br&gt;_________________________________________________________________
&lt;br&gt;Ready. Set. Get a great deal on Windows 7. See fantastic deals on Windows 7=
&lt;br&gt;&amp;nbsp;now
&lt;br&gt;&lt;a href=&quot;http://go.microsoft.com/?linkid=3D9691818=&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=3D9691818=&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26234181&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-refresh-the-interpreter-tp26222838p26234181.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26223861</id>
	<title>Re: How to refresh the interpreter</title>
	<published>2009-11-05T14:57:44Z</published>
	<updated>2009-11-05T14:57:44Z</updated>
	<author>
		<name>Fabio Zadrozny</name>
	</author>
	<content type="html">&lt;div class='shrinkable-quote'&gt;&amp;gt; I'm changing the INTERPRETER_PATH_NEW preference with the preference store of the pydev plugin. How can I send a refresh command to the pydev plugin to make sure it is updated?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; See the sample below...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Note: sometimes, pydev automatically detected my preference change and automatically refresh the plugin, but sometimes it doesn't. Is there a particular reason?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Vincent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  /**
&lt;br&gt;&amp;gt;  * String template used to define the interpreter value
&lt;br&gt;&amp;gt;  */
&lt;br&gt;&amp;gt;  private static final String INTERPRETER_PATH_NEW_TEMPLATE =
&lt;br&gt;&amp;gt;  &amp;quot;Version$versionExecutable:&amp;quot; + pathTag + &amp;quot;\\python.exe|&amp;quot; +
&lt;br&gt;&amp;gt;  &amp;quot;$path\\DLLs|&amp;quot; +
&lt;br&gt;&amp;gt;  &amp;quot;$path\\lib|&amp;quot; +
&lt;br&gt;&amp;gt;  &amp;quot;$path\\lib\\lib-tk|&amp;quot; +
&lt;br&gt;&amp;gt;  &amp;quot;$path|&amp;quot; +
&lt;br&gt;&amp;gt;  &amp;quot;$path\\lib\\site-packages|&amp;quot; +
&lt;br&gt;&amp;gt;  &amp;quot;$path\\lib\\site-packages\\win32|&amp;quot; +
&lt;br&gt;&amp;gt;  &amp;quot;$path\\lib\\site-packages\\win32\\lib|&amp;quot; +
&lt;br&gt;&amp;gt;  &amp;quot;$path\\lib\\site-packages\\Pythonwin@$|&amp;quot; +
&lt;br&gt;&amp;gt;  &amp;quot;OpenGL|__builtin__|__main__|_codecs|_hotshot|_locale|_weakref|array|audioop|binascii|cPickle|cStringIO|cmath|email|errno|exceptions|gc|imageop|imp|marshal|math|md5|msvcrt|new|nt|operator|os|pcre|regex|rgbimg|rotor|sha|signal|strop|struct|sys|thread|time|wx|wxPython|xreadlines|xxsubtype&amp;&amp;&amp;&amp;&amp;&amp;quot;;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; private void setPydevInterpreter(File pythonRootDirExecFile, String version) {
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  String pythonPath = pythonRootDirExecFile.getAbsolutePath();
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  // Calculate interpreter value
&lt;br&gt;&amp;gt;  String interpreterValue = INTERPRETER_PATH_NEW_TEMPLATE;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  // replace version
&lt;br&gt;&amp;gt;  interpreterValue = interpreterValue.replace(&amp;quot;$version&amp;quot;, version);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  // replace python path
&lt;br&gt;&amp;gt;  interpreterValue = interpreterValue.replace(&amp;quot;$path&amp;quot;, pythonPath);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  // Set INTERPRETER_PATH_NEW preference
&lt;br&gt;&amp;gt;  pydevPlugin.getPreferenceStore().setValue(INTERPRETER_PATH_NEW, interpreterValue);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  // Refresh pydev plugin
&lt;br&gt;&amp;gt;  // How can I force the refresh of the plugin
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  }
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi Vincent.
&lt;br&gt;&lt;br&gt;The actual way to create an interpreter would be something as:
&lt;br&gt;&lt;br&gt;IInterpreterManager iMan = PydevPlugin.getPythonInterpreterManager(true);
&lt;br&gt;IInterpreterInfo interpreterInfo = ... (create your interpreter info here)
&lt;br&gt;iMan.addInterpreterInfo(interpreterInfo);
&lt;br&gt;iMan.restorePythopathForAllInterpreters(monitor);
&lt;br&gt;iMan.setPersistedString(iMan.getStringToPersist(new
&lt;br&gt;IInterpreterInfo[]{interpreterInfo}));
&lt;br&gt;iMan.saveInterpretersInfoModulesManager();
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Fabio
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26223861&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-refresh-the-interpreter-tp26222838p26223861.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26223329</id>
	<title>Re: Organizing a Python project with C++ modules</title>
	<published>2009-11-05T14:19:41Z</published>
	<updated>2009-11-05T14:19:41Z</updated>
	<author>
		<name>Randolph Fritz-2</name>
	</author>
	<content type="html">&amp;gt; On Tue, Nov 3, 2009 at 9:11 PM, Randolph Fritz &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26223329&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rfritz333@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; [description of mixed C++/Python project]
&lt;br&gt;&lt;br&gt;On 2009-11-05, Fabio Zadrozny &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26223329&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabioz@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Both approaches work... [...]
&lt;br&gt;&lt;br&gt;Thanks! &amp;nbsp;That helps a lot!
&lt;br&gt;&lt;br&gt;Randolph
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Randolph Fritz
&lt;br&gt;&amp;nbsp; design machine group, architecture department, university of washington
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26223329&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rfritz@...&lt;/a&gt; -or- &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26223329&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rfritz333@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26223329&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Organizing-a-Python-project-with-C%2B%2B-modules-tp26188400p26223329.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26223165</id>
	<title>Re: Open python console without dialog</title>
	<published>2009-11-05T14:08:57Z</published>
	<updated>2009-11-05T14:08:57Z</updated>
	<author>
		<name>vincent lapointe</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26223165&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cfb578b20911050432l6c314c87g79596bba37143e03@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Content-Type: text/plain; charset=&amp;quot;Windows-1252&amp;quot;
&lt;br&gt;Content-Transfer-Encoding: quoted-printable
&lt;br&gt;MIME-Version: 1.0
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi Fabio=2C
&lt;br&gt;=20
&lt;br&gt;I will check the difficulty... :-)=20
&lt;br&gt;=20
&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;----------------------------------------
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Date: Thu=2C 5 Nov 2009 10:32:40 -0200
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26223165&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabioz@...&lt;/a&gt;
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26223165&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: Re: [Pydev-code] Open python console without dialog
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Not right now=2C but if you want=2C you can create an
&lt;br&gt;&amp;gt; createInteractiveLaunch() with receiving parameters instead of opening
&lt;br&gt;&amp;gt; the dialog (whith the current createInteractiveLaunch() calling it)
&lt;br&gt;&amp;gt; and submit that as a patch -- and I'll apply it for the next release.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers=2C
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Fabio
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Wed=2C Nov 4=2C 2009 at 3:40 PM=2C vincent lapointe
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi=2C
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'm using the following code (extract from the PydevConsoleFactory) to o=
&lt;/div&gt;pen programmatically a python console. When the createInteractiveLaunch met=
&lt;br&gt;hod is called=2C the application prompt for the type of dialog I want to op=
&lt;br&gt;en. Is there a way to open the console without showing the dialog and to au=
&lt;br&gt;tomatically select the Python Console type?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; private void function() {
&lt;br&gt;&amp;gt;&amp;gt; ScriptConsoleManager manager =3D ScriptConsoleManager.getInstance()=3B
&lt;br&gt;&amp;gt;&amp;gt; try {
&lt;br&gt;&amp;gt;&amp;gt; PydevConsoleInterpreter interpreter =3D createDefaultPydevInterpreter()=
&lt;br&gt;=3B
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; if(interpreter !=3D null){
&lt;br&gt;&amp;gt;&amp;gt; PydevConsole console =3D new PydevConsole(interpreter)=3B
&lt;br&gt;&amp;gt;&amp;gt; manager.add(console=2C true)=3B
&lt;br&gt;&amp;gt;&amp;gt; }
&lt;br&gt;&amp;gt;&amp;gt; } catch (Exception e) {
&lt;br&gt;&amp;gt;&amp;gt; PydevPlugin.log(e)=3B
&lt;br&gt;&amp;gt;&amp;gt; }
&lt;br&gt;&amp;gt;&amp;gt; }
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; private PydevConsoleInterpreter createDefaultPydevInterpreter() throws E=
&lt;/div&gt;xception=2C UserCanceledException {
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; IProcessFactory iprocessFactory =3D new IProcessFactory()=3B
&lt;br&gt;&amp;gt;&amp;gt; Tuple3 launchAndProcess =3D iprocessFactory.createInteractiveLaunch()=3B
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; if(launchAndProcess =3D=3D null){
&lt;br&gt;&amp;gt;&amp;gt; return null=3B
&lt;br&gt;&amp;gt;&amp;gt; }
&lt;br&gt;&amp;gt;&amp;gt; final ILaunch launch =3D launchAndProcess.o1=3B
&lt;br&gt;&amp;gt;&amp;gt; if(launch =3D=3D null){
&lt;br&gt;&amp;gt;&amp;gt; return null=3B
&lt;br&gt;&amp;gt;&amp;gt; }
&lt;br&gt;&amp;gt;&amp;gt; PydevConsoleInterpreter consoleInterpreter =3D new PydevConsoleInterpret=
&lt;/div&gt;er()=3B
&lt;br&gt;&amp;gt;&amp;gt; int port =3D Integer.parseInt(launch.getAttribute(IProcessFactory.INTERA=
&lt;br&gt;CTIVE_LAUNCH_PORT))=3B
&lt;br&gt;&amp;gt;&amp;gt; consoleInterpreter.setConsoleCommunication(new PydevConsoleCommunication=
&lt;br&gt;(port=2C launchAndProcess.o2=2C launchAndProcess.o3))=3B
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; consoleInterpreter.setNaturesUsed(iprocessFactory.getNaturesUsed())=3B
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; PydevDebugPlugin.getDefault().addConsoleLaunch(launch)=3B
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; consoleInterpreter.addCloseOperation(new Runnable() {
&lt;br&gt;&amp;gt;&amp;gt; public void run() {
&lt;br&gt;&amp;gt;&amp;gt; PydevDebugPlugin.getDefault().removeConsoleLaunch(launch)=3B
&lt;br&gt;&amp;gt;&amp;gt; }
&lt;br&gt;&amp;gt;&amp;gt; })=3B
&lt;br&gt;&amp;gt;&amp;gt; return consoleInterpreter=3B
&lt;br&gt;&amp;gt;&amp;gt; }
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thank
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Vincent
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _________________________________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Windows Live: Keep your friends up to date with what you do online.
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://go.microsoft.com/?linkid=3D9691815&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=3D9691815&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------=
&lt;/div&gt;------
&lt;br&gt;&amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-=
&lt;br&gt;Day
&lt;br&gt;&amp;gt;&amp;gt; trial. Simplify your report design=2C integration and deployment - and f=
&lt;br&gt;ocus on
&lt;br&gt;&amp;gt;&amp;gt; what you do best=2C core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt; Crystal Reports now. &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26223165&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------=
&lt;br&gt;-----
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-D=
&lt;br&gt;ay
&lt;br&gt;&amp;gt; trial. Simplify your report design=2C integration and deployment - and fo=
&lt;br&gt;cus on
&lt;br&gt;&amp;gt; what you do best=2C core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now. &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26223165&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&amp;nbsp;		 	 &amp;nbsp; 		 =20
&lt;br&gt;_________________________________________________________________
&lt;br&gt;Windows Live: Make it easier for your friends to see what you=92re up to on=
&lt;br&gt;&amp;nbsp;Facebook.
&lt;br&gt;&lt;a href=&quot;http://go.microsoft.com/?linkid=3D9691816=&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=3D9691816=&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26223165&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Open-python-console-without-dialog-tp26201161p26223165.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26222838</id>
	<title>How to refresh the interpreter</title>
	<published>2009-11-05T13:46:53Z</published>
	<updated>2009-11-05T13:46:53Z</updated>
	<author>
		<name>vincent lapointe</name>
	</author>
	<content type="html">&lt;br&gt;Hi,
&lt;br&gt;&amp;nbsp;
&lt;br&gt;I'm changing the INTERPRETER_PATH_NEW preference with the preference store of the pydev plugin. How can I send a refresh command to the pydev plugin to make sure it is updated?
&lt;br&gt;&amp;nbsp;
&lt;br&gt;See the sample below...
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Note: sometimes, pydev automatically detected my preference change and automatically refresh the plugin, but sometimes it doesn't. Is there a particular reason?
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Thanks
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Vincent
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;/**
&lt;br&gt;&amp;nbsp; * String template used to define the interpreter value
&lt;br&gt;&amp;nbsp; */
&lt;br&gt;&amp;nbsp;private static final String INTERPRETER_PATH_NEW_TEMPLATE = 
&lt;br&gt;&amp;nbsp; &amp;quot;Version$versionExecutable:&amp;quot; + pathTag + &amp;quot;\\python.exe|&amp;quot; + 
&lt;br&gt;&amp;nbsp; &amp;quot;$path\\DLLs|&amp;quot; + 
&lt;br&gt;&amp;nbsp; &amp;quot;$path\\lib|&amp;quot; + 
&lt;br&gt;&amp;nbsp; &amp;quot;$path\\lib\\lib-tk|&amp;quot; + 
&lt;br&gt;&amp;nbsp; &amp;quot;$path|&amp;quot; + 
&lt;br&gt;&amp;nbsp; &amp;quot;$path\\lib\\site-packages|&amp;quot; + 
&lt;br&gt;&amp;nbsp; &amp;quot;$path\\lib\\site-packages\\win32|&amp;quot; + 
&lt;br&gt;&amp;nbsp; &amp;quot;$path\\lib\\site-packages\\win32\\lib|&amp;quot; + 
&lt;br&gt;&amp;nbsp; &amp;quot;$path\\lib\\site-packages\\Pythonwin@$|&amp;quot; +
&lt;br&gt;&amp;nbsp; &amp;quot;OpenGL|__builtin__|__main__|_codecs|_hotshot|_locale|_weakref|array|audioop|binascii|cPickle|cStringIO|cmath|email|errno|exceptions|gc|imageop|imp|marshal|math|md5|msvcrt|new|nt|operator|os|pcre|regex|rgbimg|rotor|sha|signal|strop|struct|sys|thread|time|wx|wxPython|xreadlines|xxsubtype&amp;&amp;&amp;&amp;&amp;&amp;quot;;
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;private void setPydevInterpreter(File pythonRootDirExecFile, String version) {
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp; String pythonPath = pythonRootDirExecFile.getAbsolutePath();
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp; // Calculate interpreter value 
&lt;br&gt;&amp;nbsp; String interpreterValue = INTERPRETER_PATH_NEW_TEMPLATE;
&lt;br&gt;&lt;br&gt;&amp;nbsp; // replace version
&lt;br&gt;&amp;nbsp; interpreterValue = interpreterValue.replace(&amp;quot;$version&amp;quot;, version);
&lt;br&gt;&lt;br&gt;&amp;nbsp; // replace python path
&lt;br&gt;&amp;nbsp; interpreterValue = interpreterValue.replace(&amp;quot;$path&amp;quot;, pythonPath);
&lt;br&gt;&lt;br&gt;&amp;nbsp; // Set INTERPRETER_PATH_NEW preference
&lt;br&gt;&amp;nbsp; pydevPlugin.getPreferenceStore().setValue(INTERPRETER_PATH_NEW, interpreterValue);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; // Refresh pydev plugin
&lt;br&gt;&amp;nbsp; // How can I force the refresh of the plugin
&lt;br&gt;&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&amp;nbsp; 		 	 &amp;nbsp; 		 &amp;nbsp;
&lt;br&gt;_________________________________________________________________
&lt;br&gt;Windows Live: Keep your friends up to date with what you do online.
&lt;br&gt;&lt;a href=&quot;http://go.microsoft.com/?linkid=9691815&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=9691815&lt;/a&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26222838&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-refresh-the-interpreter-tp26222838p26222838.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26213845</id>
	<title>Re: Organizing a Python project with C++ modules</title>
	<published>2009-11-05T04:43:13Z</published>
	<updated>2009-11-05T04:43:13Z</updated>
	<author>
		<name>Fabio Zadrozny</name>
	</author>
	<content type="html">Hi Randolph,
&lt;br&gt;&lt;br&gt;On Tue, Nov 3, 2009 at 9:11 PM, Randolph Fritz &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26213845&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rfritz333@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; I have a project with a Python GUI, some boost.python C++
&lt;br&gt;&amp;gt; visualization modules, &amp; some external libraries I am try to import to
&lt;br&gt;&amp;gt; Eclipse.  I need to be able to build and debug these together.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What's the best way to approach this problem?  Establish two separate
&lt;br&gt;&amp;gt; Eclipse projects for the Python and C++ code?  Or...?
&lt;br&gt;&lt;br&gt;Both approaches work... If you choose to put them in the same project,
&lt;br&gt;you have to add the folder that has the dlls created as a source to
&lt;br&gt;your pythopath. If you create 2 projects, you still have to set the
&lt;br&gt;C++ project as a pydev project and add the source folder to the
&lt;br&gt;pythonpath, and you also have to add a reference to that project from
&lt;br&gt;your pydev project. Personally, I think separating projects is better
&lt;br&gt;(as it's easier to configure the C++ portion of things).
&lt;br&gt;&lt;br&gt;Don't forget that you have to do a ctrl+2+kill (with focus on the
&lt;br&gt;pydev editor) before you recompile your libraries (this is needed
&lt;br&gt;because the python shell spawned may lock those libraries and so that
&lt;br&gt;the shell is restarted to get the new completions from those dlls).
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Also, does PyDev provide any support for distutils?
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Not right now.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Fabio
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Randolph Fritz
&lt;br&gt;&amp;gt;  design machine group, architecture department, university of washington
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26213845&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rfritz@...&lt;/a&gt; -or- &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26213845&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rfritz333@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and stay
&lt;br&gt;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26213845&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26213845&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Organizing-a-Python-project-with-C%2B%2B-modules-tp26188400p26213845.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26213736</id>
	<title>Re: Open python console without dialog</title>
	<published>2009-11-05T04:32:40Z</published>
	<updated>2009-11-05T04:32:40Z</updated>
	<author>
		<name>Fabio Zadrozny</name>
	</author>
	<content type="html">Not right now, but if you want, you can create an
&lt;br&gt;createInteractiveLaunch() with receiving parameters instead of opening
&lt;br&gt;the dialog (whith the current createInteractiveLaunch() calling it)
&lt;br&gt;and submit that as a patch -- and I'll apply it for the next release.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Fabio
&lt;br&gt;&lt;br&gt;On Wed, Nov 4, 2009 at 3:40 PM, vincent lapointe
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26213736&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lapointe_vincent_1975@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm using the following code (extract from the PydevConsoleFactory) to open programmatically a python console. When the createInteractiveLaunch method is called, the application prompt for the type of dialog I want to open. Is there a way to open the console without showing the dialog and to automatically select the Python Console type?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; private void function() {
&lt;br&gt;&amp;gt;  ScriptConsoleManager manager = ScriptConsoleManager.getInstance();
&lt;br&gt;&amp;gt;  try {
&lt;br&gt;&amp;gt;    PydevConsoleInterpreter interpreter = createDefaultPydevInterpreter();
&lt;br&gt;&amp;gt;    if(interpreter != null){
&lt;br&gt;&amp;gt;      PydevConsole console = new PydevConsole(interpreter);
&lt;br&gt;&amp;gt;      manager.add(console, true);
&lt;br&gt;&amp;gt;    }
&lt;br&gt;&amp;gt;  } catch (Exception e) {
&lt;br&gt;&amp;gt;    PydevPlugin.log(e);
&lt;br&gt;&amp;gt;  }
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; private PydevConsoleInterpreter createDefaultPydevInterpreter() throws Exception, UserCanceledException {
&lt;br&gt;&amp;gt;        IProcessFactory iprocessFactory = new IProcessFactory();
&lt;br&gt;&amp;gt;        Tuple3&amp;lt;Launch, Process, Integer&amp;gt; launchAndProcess = iprocessFactory.createInteractiveLaunch();
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;        if(launchAndProcess == null){
&lt;br&gt;&amp;gt;            return null;
&lt;br&gt;&amp;gt;        }
&lt;br&gt;&amp;gt;        final ILaunch launch = launchAndProcess.o1;
&lt;br&gt;&amp;gt;        if(launch == null){
&lt;br&gt;&amp;gt;            return null;
&lt;br&gt;&amp;gt;        }
&lt;br&gt;&amp;gt;        PydevConsoleInterpreter consoleInterpreter = new PydevConsoleInterpreter();
&lt;br&gt;&amp;gt;        int port = Integer.parseInt(launch.getAttribute(IProcessFactory.INTERACTIVE_LAUNCH_PORT));
&lt;br&gt;&amp;gt;        consoleInterpreter.setConsoleCommunication(new PydevConsoleCommunication(port, launchAndProcess.o2, launchAndProcess.o3));
&lt;br&gt;&amp;gt;        consoleInterpreter.setNaturesUsed(iprocessFactory.getNaturesUsed());
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;        PydevDebugPlugin.getDefault().addConsoleLaunch(launch);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;        consoleInterpreter.addCloseOperation(new Runnable() {
&lt;br&gt;&amp;gt;            public void run() {
&lt;br&gt;&amp;gt;                PydevDebugPlugin.getDefault().removeConsoleLaunch(launch);
&lt;br&gt;&amp;gt;            }
&lt;br&gt;&amp;gt;        });
&lt;br&gt;&amp;gt;        return consoleInterpreter;
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thank
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Vincent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _________________________________________________________________
&lt;br&gt;&amp;gt; Windows Live: Keep your friends up to date with what you do online.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://go.microsoft.com/?linkid=9691815&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=9691815&lt;/a&gt;&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26213736&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26213736&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Open-python-console-without-dialog-tp26201161p26213736.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26201161</id>
	<title>Open python console without dialog</title>
	<published>2009-11-04T09:40:16Z</published>
	<updated>2009-11-04T09:40:16Z</updated>
	<author>
		<name>vincent lapointe</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp;
&lt;br&gt;Hi,
&lt;br&gt;&amp;nbsp;
&lt;br&gt;I'm using the following code (extract from the PydevConsoleFactory) to open programmatically a python console. When the createInteractiveLaunch method is called, the application prompt for the type of dialog I want to open. Is there a way to open the console without showing the dialog and to automatically select the Python Console type?
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;private void function() {
&lt;br&gt;&amp;nbsp; ScriptConsoleManager manager = ScriptConsoleManager.getInstance();
&lt;br&gt;&amp;nbsp; try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; PydevConsoleInterpreter interpreter = createDefaultPydevInterpreter();
&lt;br&gt;&amp;nbsp; &amp;nbsp; if(interpreter != null){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; PydevConsole console = new PydevConsole(interpreter);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; manager.add(console, true);
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; } catch (Exception e) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; PydevPlugin.log(e);
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;private PydevConsoleInterpreter createDefaultPydevInterpreter() throws Exception, UserCanceledException {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; IProcessFactory iprocessFactory = new IProcessFactory();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Tuple3&amp;lt;Launch, Process, Integer&amp;gt; launchAndProcess = iprocessFactory.createInteractiveLaunch();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(launchAndProcess == null){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return null;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; final ILaunch launch = launchAndProcess.o1;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(launch == null){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return null;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PydevConsoleInterpreter consoleInterpreter = new PydevConsoleInterpreter();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; int port = Integer.parseInt(launch.getAttribute(IProcessFactory.INTERACTIVE_LAUNCH_PORT));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; consoleInterpreter.setConsoleCommunication(new PydevConsoleCommunication(port, launchAndProcess.o2, launchAndProcess.o3));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; consoleInterpreter.setNaturesUsed(iprocessFactory.getNaturesUsed());
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PydevDebugPlugin.getDefault().addConsoleLaunch(launch);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; consoleInterpreter.addCloseOperation(new Runnable() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public void run() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PydevDebugPlugin.getDefault().removeConsoleLaunch(launch);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return consoleInterpreter;
&lt;br&gt;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Thank
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Vincent
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; 		 	 &amp;nbsp; 		 &amp;nbsp;
&lt;br&gt;_________________________________________________________________
&lt;br&gt;Windows Live: Keep your friends up to date with what you do online.
&lt;br&gt;&lt;a href=&quot;http://go.microsoft.com/?linkid=9691815&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://go.microsoft.com/?linkid=9691815&lt;/a&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26201161&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Open-python-console-without-dialog-tp26201161p26201161.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26188400</id>
	<title>Organizing a Python project with C++ modules</title>
	<published>2009-11-03T15:11:53Z</published>
	<updated>2009-11-03T15:11:53Z</updated>
	<author>
		<name>Randolph Fritz-2</name>
	</author>
	<content type="html">I have a project with a Python GUI, some boost.python C++
&lt;br&gt;visualization modules, &amp; some external libraries I am try to import to
&lt;br&gt;Eclipse. &amp;nbsp;I need to be able to build and debug these together.
&lt;br&gt;&lt;br&gt;What's the best way to approach this problem? &amp;nbsp;Establish two separate
&lt;br&gt;Eclipse projects for the Python and C++ code? &amp;nbsp;Or...?
&lt;br&gt;&lt;br&gt;Also, does PyDev provide any support for distutils?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Randolph Fritz
&lt;br&gt;&amp;nbsp; design machine group, architecture department, university of washington
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26188400&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rfritz@...&lt;/a&gt; -or- &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26188400&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rfritz333@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26188400&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Organizing-a-Python-project-with-C%2B%2B-modules-tp26188400p26188400.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25937766</id>
	<title>Re: Configuring PyQt4 on a Mac</title>
	<published>2009-10-17T05:08:13Z</published>
	<updated>2009-10-17T05:08:13Z</updated>
	<author>
		<name>Fabio Zadrozny</name>
	</author>
	<content type="html">The problem is that you added the PyQt4 folder to the pythonpath. You
&lt;br&gt;must only adds its parent folder (i.e.: site-packages) to the
&lt;br&gt;pythonpath for things to be properly resolved.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Fabio
&lt;br&gt;&lt;br&gt;On Tue, Oct 13, 2009 at 11:22 AM, Keith Lander &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25937766&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;keithlander@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I spoke too soon! The unresolved import error went away, but now the code
&lt;br&gt;&amp;gt; hits a runtime error saying the PyQt4 modules are not there. Everything
&lt;br&gt;&amp;gt; looks OK to me, so I've attached some screen shots. Any suggestions.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers
&lt;br&gt;&amp;gt; Keith
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 13 Oct 2009, at 13:04, Fabio Zadrozny wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Another thing is that PyQt4 has a bug which could prevent the analysis
&lt;br&gt;&amp;gt;&amp;gt; from working correctly -- see:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://sourceforge.net/tracker/index.php?func=detail&amp;aid=2855598&amp;group_id=85796&amp;atid=577329&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/index.php?func=detail&amp;aid=2855598&amp;group_id=85796&amp;atid=577329&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; (not sure if it was already fixed).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Fabio
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Tue, Oct 13, 2009 at 9:03 AM, Fabio Zadrozny &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25937766&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabio@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; The only thing that's really needed is adding it to the pythonpath...
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; E.g.: if you installed it at D:\bin\Python261\Lib\site-packages\PyQt4,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; the D:\bin\Python261\Lib\site-packages folder should be in the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; pythonpath.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Fabio
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On Tue, Oct 13, 2009 at 5:11 AM, Keith Lander &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25937766&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;keithlander@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I have been trying to configure PyQt4 without any success. PyQt4 works
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; OK when I use Eric4, but no matter how I try and configure it with
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; PyDev I get unresolved import errors. Could someone please let me know
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; what steps are needed to get this to work.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Cheers
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Keith
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; stay
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25937766&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and stay
&lt;br&gt;&amp;gt;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25937766&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and stay
&lt;br&gt;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25937766&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25937766&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Configuring-PyQt4-on-a-Mac-tp25868839p25937766.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25873896</id>
	<title>Re: Configuring PyQt4 on a Mac</title>
	<published>2009-10-13T07:22:27Z</published>
	<updated>2009-10-13T07:22:27Z</updated>
	<author>
		<name>Keith Lander</name>
	</author>
	<content type="html">I spoke too soon! The unresolved import error went away, but now the &amp;nbsp;
&lt;br&gt;code hits a runtime error saying the PyQt4 modules are not there. &amp;nbsp;
&lt;br&gt;Everything looks OK to me, so I've attached some screen shots. Any &amp;nbsp;
&lt;br&gt;suggestions.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Keith
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;&lt;br&gt;On 13 Oct 2009, at 13:04, Fabio Zadrozny wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Another thing is that PyQt4 has a bug which could prevent the analysis
&lt;br&gt;&amp;gt; from working correctly -- see:
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://sourceforge.net/tracker/index.php?func=detail&amp;aid=2855598&amp;group_id=85796&amp;atid=577329&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/index.php?func=detail&amp;aid=2855598&amp;group_id=85796&amp;atid=577329&lt;/a&gt;&lt;br&gt;&amp;gt; (not sure if it was already fixed).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Fabio
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Tue, Oct 13, 2009 at 9:03 AM, Fabio Zadrozny &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25873896&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabio@...&lt;/a&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; The only thing that's really needed is adding it to the pythonpath...
&lt;br&gt;&amp;gt;&amp;gt; E.g.: if you installed it at D:\bin\Python261\Lib\site-packages 
&lt;br&gt;&amp;gt;&amp;gt; \PyQt4,
&lt;br&gt;&amp;gt;&amp;gt; the D:\bin\Python261\Lib\site-packages folder should be in the
&lt;br&gt;&amp;gt;&amp;gt; pythonpath.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Fabio
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Tue, Oct 13, 2009 at 5:11 AM, Keith Lander &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25873896&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;keithlander@...&lt;/a&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I have been trying to configure PyQt4 without any success. PyQt4 &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; works
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; OK when I use Eric4, but no matter how I try and configure it with
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; PyDev I get unresolved import errors. Could someone please let me &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; know
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; what steps are needed to get this to work.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Cheers
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Keith
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; is the only developer event you need to attend this year. &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Jumpstart your
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; developing skills, take BlackBerry mobile applications to market &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; and stay
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; now!
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25873896&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart &amp;nbsp;
&lt;br&gt;&amp;gt; your
&lt;br&gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and &amp;nbsp;
&lt;br&gt;&amp;gt; stay
&lt;br&gt;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25873896&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25873896&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;Runtime Error.png&lt;/strong&gt; (47K) &lt;a href=&quot;http://old.nabble.com/attachment/25873896/0/Runtime%20Error.png&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;PyDef Pythonpath.png&lt;/strong&gt; (31K) &lt;a href=&quot;http://old.nabble.com/attachment/25873896/1/PyDef%20Pythonpath.png&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;PyQt4 Folder.png&lt;/strong&gt; (31K) &lt;a href=&quot;http://old.nabble.com/attachment/25873896/2/PyQt4%20Folder.png&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Configuring-PyQt4-on-a-Mac-tp25868839p25873896.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25872798</id>
	<title>Re: Configuring PyQt4 on a Mac</title>
	<published>2009-10-13T05:18:49Z</published>
	<updated>2009-10-13T05:18:49Z</updated>
	<author>
		<name>Keith Lander</name>
	</author>
	<content type="html">That's the problem. Thanks - it was driving me crazy!
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Keith
&lt;br&gt;&lt;br&gt;On 13 Oct 2009, at 13:04, Fabio Zadrozny wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Another thing is that PyQt4 has a bug which could prevent the analysis
&lt;br&gt;&amp;gt; from working correctly -- see:
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://sourceforge.net/tracker/index.php?func=detail&amp;aid=2855598&amp;group_id=85796&amp;atid=577329&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/index.php?func=detail&amp;aid=2855598&amp;group_id=85796&amp;atid=577329&lt;/a&gt;&lt;br&gt;&amp;gt; (not sure if it was already fixed).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Fabio
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Tue, Oct 13, 2009 at 9:03 AM, Fabio Zadrozny &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25872798&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabio@...&lt;/a&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; The only thing that's really needed is adding it to the pythonpath...
&lt;br&gt;&amp;gt;&amp;gt; E.g.: if you installed it at D:\bin\Python261\Lib\site-packages 
&lt;br&gt;&amp;gt;&amp;gt; \PyQt4,
&lt;br&gt;&amp;gt;&amp;gt; the D:\bin\Python261\Lib\site-packages folder should be in the
&lt;br&gt;&amp;gt;&amp;gt; pythonpath.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Fabio
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Tue, Oct 13, 2009 at 5:11 AM, Keith Lander &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25872798&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;keithlander@...&lt;/a&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I have been trying to configure PyQt4 without any success. PyQt4 &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; works
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; OK when I use Eric4, but no matter how I try and configure it with
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; PyDev I get unresolved import errors. Could someone please let me &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; know
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; what steps are needed to get this to work.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Cheers
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Keith
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; is the only developer event you need to attend this year. &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Jumpstart your
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; developing skills, take BlackBerry mobile applications to market &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; and stay
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; now!
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25872798&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart &amp;nbsp;
&lt;br&gt;&amp;gt; your
&lt;br&gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and &amp;nbsp;
&lt;br&gt;&amp;gt; stay
&lt;br&gt;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25872798&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25872798&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Configuring-PyQt4-on-a-Mac-tp25868839p25872798.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25871668</id>
	<title>Re: Configuring PyQt4 on a Mac</title>
	<published>2009-10-13T05:04:23Z</published>
	<updated>2009-10-13T05:04:23Z</updated>
	<author>
		<name>Fabio Zadrozny-3</name>
	</author>
	<content type="html">Another thing is that PyQt4 has a bug which could prevent the analysis
&lt;br&gt;from working correctly -- see:
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/index.php?func=detail&amp;aid=2855598&amp;group_id=85796&amp;atid=577329&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/index.php?func=detail&amp;aid=2855598&amp;group_id=85796&amp;atid=577329&lt;/a&gt;&lt;br&gt;(not sure if it was already fixed).
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Fabio
&lt;br&gt;&lt;br&gt;On Tue, Oct 13, 2009 at 9:03 AM, Fabio Zadrozny &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25871668&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabio@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; The only thing that's really needed is adding it to the pythonpath...
&lt;br&gt;&amp;gt; E.g.: if you installed it at D:\bin\Python261\Lib\site-packages\PyQt4,
&lt;br&gt;&amp;gt; the D:\bin\Python261\Lib\site-packages folder should be in the
&lt;br&gt;&amp;gt; pythonpath.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Fabio
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Tue, Oct 13, 2009 at 5:11 AM, Keith Lander &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25871668&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;keithlander@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; I have been trying to configure PyQt4 without any success. PyQt4 works
&lt;br&gt;&amp;gt;&amp;gt; OK when I use Eric4, but no matter how I try and configure it with
&lt;br&gt;&amp;gt;&amp;gt; PyDev I get unresolved import errors. Could someone please let me know
&lt;br&gt;&amp;gt;&amp;gt; what steps are needed to get this to work.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Cheers
&lt;br&gt;&amp;gt;&amp;gt; Keith
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and stay
&lt;br&gt;&amp;gt;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25871668&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25871668&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Configuring-PyQt4-on-a-Mac-tp25868839p25871668.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25871650</id>
	<title>Re: Configuring PyQt4 on a Mac</title>
	<published>2009-10-13T05:03:29Z</published>
	<updated>2009-10-13T05:03:29Z</updated>
	<author>
		<name>Fabio Zadrozny-3</name>
	</author>
	<content type="html">The only thing that's really needed is adding it to the pythonpath...
&lt;br&gt;E.g.: if you installed it at D:\bin\Python261\Lib\site-packages\PyQt4,
&lt;br&gt;the D:\bin\Python261\Lib\site-packages folder should be in the
&lt;br&gt;pythonpath.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Fabio
&lt;br&gt;&lt;br&gt;On Tue, Oct 13, 2009 at 5:11 AM, Keith Lander &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25871650&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;keithlander@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I have been trying to configure PyQt4 without any success. PyQt4 works
&lt;br&gt;&amp;gt; OK when I use Eric4, but no matter how I try and configure it with
&lt;br&gt;&amp;gt; PyDev I get unresolved import errors. Could someone please let me know
&lt;br&gt;&amp;gt; what steps are needed to get this to work.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers
&lt;br&gt;&amp;gt; Keith
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and stay
&lt;br&gt;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25871650&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25871650&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Configuring-PyQt4-on-a-Mac-tp25868839p25871650.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25868839</id>
	<title>Configuring PyQt4 on a Mac</title>
	<published>2009-10-13T01:11:32Z</published>
	<updated>2009-10-13T01:11:32Z</updated>
	<author>
		<name>Keith Lander</name>
	</author>
	<content type="html">I have been trying to configure PyQt4 without any success. PyQt4 works &amp;nbsp;
&lt;br&gt;OK when I use Eric4, but no matter how I try and configure it with &amp;nbsp;
&lt;br&gt;PyDev I get unresolved import errors. Could someone please let me know &amp;nbsp;
&lt;br&gt;what steps are needed to get this to work.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Keith
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25868839&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Configuring-PyQt4-on-a-Mac-tp25868839p25868839.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25452106</id>
	<title>Is this a bug?</title>
	<published>2009-09-15T04:11:59Z</published>
	<updated>2009-09-15T04:11:59Z</updated>
	<author>
		<name>dave berk</name>
	</author>
	<content type="html">&lt;div dir=&quot;ltr&quot;&gt;Hi all&lt;br&gt;&lt;br&gt;Just started using Pydev. Great program. &lt;br&gt;&lt;br&gt;I&amp;#39;ve noticed that Pydev live syntax checker will mark some new python 3 syntax as an error. For example, the dictionary comprehension syntax is marked as an error: &lt;br&gt;

&lt;br&gt;{x:y for x in z}&lt;br&gt;&lt;br&gt;(y &amp;amp; z already defined)&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;Dave&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25452106&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Is-this-a-bug--tp25452106p25452106.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25420758</id>
	<title>Re: Pydev project dependencies  [SOLVED]</title>
	<published>2009-09-12T22:48:25Z</published>
	<updated>2009-09-12T22:48:25Z</updated>
	<author>
		<name>Dave Rogers-5</name>
	</author>
	<content type="html">&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font: inherit;&quot;&gt;Hey Fabio et al,&lt;br&gt;I fixed the issue, and it is something that people who like to work on both linux and windows should be aware off:&amp;nbsp; The problem was the default mounting options for mounting a fat32 partition in ubuntu.&amp;nbsp; The file type for the mount is vfat, and the option that needs to be added is&amp;nbsp; &lt;br&gt;shortname=mixed&lt;br&gt;the shortname refers to 8.3 filenames that work for dos.&lt;br&gt;From the mount man page under vfat options:&lt;br&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; shortname=[lower|win95|winnt|mixed]&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Defines&amp;nbsp; the&amp;nbsp; behaviour&amp;nbsp; for&amp;nbsp; creation and display of filenames which
 fit&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; into 8.3 characters. If a long name for a file exists, it will always&amp;nbsp; be&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; preferred display. There are four modes: :&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lower&amp;nbsp; Force the short name to lower case upon display; store a long name&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when the short name is not&amp;nbsp; all&amp;nbsp; upper&amp;nbsp; case.&amp;nbsp; This&amp;nbsp; mode&amp;nbsp; is&amp;nbsp; the&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; default.&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; win95&amp;nbsp; Force the short name to upper case upon display; store
 a long name&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when the short name is not all upper case.&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; winnt&amp;nbsp; Display the shortname as is; store a long name when the short name&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; is not all lower case or all upper case.&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mixed&amp;nbsp; Display&amp;nbsp; the&amp;nbsp; short&amp;nbsp; name&amp;nbsp; as is; store a long name when the short&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name is not all upper case.&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&lt;br&gt;If you like to easily share
 data with Windows,by using fat32 partitions, be aware of the need to set this option.&amp;nbsp; In my case it was translating the META-INF to meta-inf, and would not allow me to even rename it to upper case in the shell, nautilus, or eclipse, as it already was upper case behind the scene, but eclipse didn't recognize the lower case...&lt;br&gt;&lt;br&gt;Have a good one,&lt;br&gt;Dave&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;--- On &lt;b&gt;Sat, 9/12/09, Fabio Zadrozny &lt;i&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25420758&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabioz@...&lt;/a&gt;&amp;gt;&lt;/i&gt;&lt;/b&gt; wrote:&lt;br&gt;&lt;blockquote style=&quot;border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;&quot;&gt;&lt;br&gt;From: Fabio Zadrozny &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25420758&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabioz@...&lt;/a&gt;&amp;gt;&lt;br&gt;Subject: Re: [Pydev-code] Pydev project dependencies&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25420758&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;&lt;br&gt;Date: Saturday, September 12, 2009, 3:51 PM&lt;br&gt;&lt;br&gt;&lt;div id=&quot;yiv1980048675&quot;&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;br&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;div&gt;&lt;div&gt;Hi Fabio,&lt;br&gt;I've been working on some test driven development functionality for Pydev.&amp;nbsp; While I am psyched that you have been able to open source Pydev Extensions so we can work with the code, I'm having issues with most of the projects not building in linux.&amp;nbsp; This is separate from needing to create the local testing data files--this I have down fine as I've been working with the pydev source from the subversion repo for a while.&amp;nbsp; Rather, after importing the projects from my local git repo, and then dealing with the TestDependent.java, most of the projects indicate red error markers in the package explorer that resolve down to all imports:&lt;br&gt;
import eclipse.org.** &lt;br&gt;not being recognized.&lt;br&gt;When I look at the plugin.xml in any of the affected projects, there are *no* dependencies listed in the
 dependency tab.&amp;nbsp; I have also noted that in the overview tab of the plugin.xml, there is a link to create an osgi
 bundle for the project--so the bundle information is not being read.&amp;nbsp; I also note that the META-INF folder is actually named meta-inf in the package explorer, and the MANIFEST.MF is in lower case as well.&amp;nbsp; I run windows xp in a vm and note that these file names are correctly capitalized, and all of the dependencies show in the plugin.xml dependencies tab.&amp;nbsp; After tweaking the .&lt;br&gt;
I was wondering if this is something that should be fixed in the repo, or perhaps is an issue with git on my end?&lt;br&gt;&lt;br&gt;Have a good one,&lt;br&gt;&lt;font color=&quot;#888888&quot;&gt;Dave&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;
&lt;/div&gt;&lt;br&gt;Hi Dave,&lt;br&gt;&lt;br&gt;That seems really strange... The capitalization of things seems correct for me (at least on my machine) and I've browsed the tree at github (&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://github.com/aptana/Pydev/tree/master&quot;&gt;http://github.com/aptana/Pydev/tree/master&lt;/a&gt;) and it seems correct there too. Also, although I still haven't built Pydev on linux after going to github, it was being regularly built before (doing nightly builds -- right now it's still not ported to github), so, it seems it's something on your side (although I'm not sure what could that be).&lt;br&gt;
&lt;br&gt;Anyone else there building on Linux can verify that?&lt;br&gt;&lt;br&gt;Cheers,&lt;br&gt;&lt;br&gt;Fabio&lt;br&gt;
&lt;/div&gt;&lt;br&gt;-----Inline Attachment Follows-----&lt;br&gt;&lt;br&gt;&lt;div class=&quot;plainMail&quot;&gt;------------------------------------------------------------------------------&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day &lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on &lt;br&gt;what you do best, core application coding. Discover what's new with &lt;br&gt;Crystal Reports now.&amp;nbsp; &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;/div&gt;&lt;br&gt;-----Inline Attachment Follows-----&lt;br&gt;&lt;br&gt;&lt;div class=&quot;plainMail&quot;&gt;_______________________________________________&lt;br&gt;pydev-code mailing list&lt;br&gt;&lt;a ymailto=&quot;mailto:pydev-code@lists.sourceforge.net&quot; href=&quot;/mc/compose?to=pydev-code@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25420758&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pydev-project-dependencies-tp25418678p25420758.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25419479</id>
	<title>Re: Pydev project dependencies</title>
	<published>2009-09-12T17:07:49Z</published>
	<updated>2009-09-12T17:07:49Z</updated>
	<author>
		<name>Dave Rogers-5</name>
	</author>
	<content type="html">&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font: inherit;&quot;&gt;Hey Fabio,&lt;br&gt;Thanks for the quick response.&amp;nbsp; It does seem pretty strange.&amp;nbsp; I have never used git before, so I am reading up on it a bit.&amp;nbsp; I note that when using gitk to examine the repo, the capitalization is correct.&amp;nbsp; However, from the repo directory in linux (Ubuntu Jaunty), I see the following in all relevant plugins:&lt;br&gt;&lt;br&gt;drogers@xps420:/share-fat/pydev/Pydev$ ls&lt;br&gt;builders&amp;nbsp; features&amp;nbsp; make_release.py&amp;nbsp; plugins&amp;nbsp; remove_unversioned_files.py&lt;br&gt;drogers@xps420:/share-fat/pydev/Pydev$ find . -iname
 meta-inf&lt;br&gt;./plugins/com.python.pydev.analysis/meta-inf&lt;br&gt;./plugins/com.python.pydev.codecompletion/meta-inf&lt;br&gt;./plugins/com.python.pydev.debug/meta-inf&lt;br&gt;./plugins/com.python.pydev.fastparser/meta-inf&lt;br&gt;./plugins/com.python.pydev.refactoring/meta-inf&lt;br&gt;./plugins/com.python.pydev.runalltests/meta-inf&lt;br&gt;./plugins/com.python.pydev/meta-inf&lt;br&gt;./plugins/org.python.pydev.ast/meta-inf&lt;br&gt;./plugins/org.python.pydev.core/meta-inf&lt;br&gt;./plugins/org.python.pydev.customizations/meta-inf&lt;br&gt;./plugins/org.python.pydev.debug/meta-inf&lt;br&gt;./plugins/org.python.pydev.help/meta-inf&lt;br&gt;./plugins/org.python.pydev.jython/meta-inf&lt;br&gt;./plugins/org.python.pydev.mylyn/meta-inf&lt;br&gt;./plugins/org.python.pydev.parser/meta-inf&lt;br&gt;./plugins/org.python.pydev.refactoring/meta-inf&lt;br&gt;./plugins/org.python.pydev.runalltests/meta-inf&lt;br&gt;./plugins/org.python.pydev.templates/meta-inf&lt;br&gt;./plugins/org.python.pydev/meta-inf&lt;br&gt;&lt;br&gt;drogers@xps420:/share-fat/pydev/Pydev$ find . -iname
 manifest.mf&lt;br&gt;./plugins/com.python.pydev.analysis/meta-inf/manifest.mf&lt;br&gt;./plugins/com.python.pydev.codecompletion/meta-inf/manifest.mf&lt;br&gt;./plugins/com.python.pydev.debug/meta-inf/manifest.mf&lt;br&gt;./plugins/com.python.pydev.fastparser/meta-inf/manifest.mf&lt;br&gt;./plugins/com.python.pydev.refactoring/meta-inf/manifest.mf&lt;br&gt;./plugins/com.python.pydev.runalltests/meta-inf/manifest.mf&lt;br&gt;./plugins/com.python.pydev/meta-inf/manifest.mf&lt;br&gt;./plugins/org.python.pydev.ast/meta-inf/manifest.mf&lt;br&gt;./plugins/org.python.pydev.core/meta-inf/manifest.mf&lt;br&gt;./plugins/org.python.pydev.customizations/meta-inf/manifest.mf&lt;br&gt;./plugins/org.python.pydev.debug/meta-inf/manifest.mf&lt;br&gt;./plugins/org.python.pydev.help/meta-inf/manifest.mf&lt;br&gt;./plugins/org.python.pydev.jython/meta-inf/manifest.mf&lt;br&gt;./plugins/org.python.pydev.mylyn/meta-inf/manifest.mf&lt;br&gt;./plugins/org.python.pydev.parser/meta-inf/manifest.mf&lt;br&gt;./plugins/org.python.pydev.refactoring/meta-inf/manifest.mf&lt;br&gt;./p
lugins/org.python.pydev.runalltests/meta-inf/manifest.mf&lt;br&gt;./plugins/org.python.pydev.templates/meta-inf/manifest.mf&lt;br&gt;./plugins/org.python.pydev/meta-inf/manifest.mf&lt;br&gt;drogers@xps420:/share-fat/pydev/Pydev$ &lt;br&gt;&lt;br&gt;I will fix the issue locally, however if anyone has any insight to the situation, it would be greatly appreciated.&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Dave&lt;br&gt;&lt;br&gt;&lt;br&gt;--- On &lt;b&gt;Sat, 9/12/09, Fabio Zadrozny &lt;i&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25419479&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabioz@...&lt;/a&gt;&amp;gt;&lt;/i&gt;&lt;/b&gt; wrote:&lt;br&gt;&lt;blockquote style=&quot;border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;&quot;&gt;&lt;br&gt;From: Fabio Zadrozny &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25419479&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fabioz@...&lt;/a&gt;&amp;gt;&lt;br&gt;Subject: Re: [Pydev-code] Pydev project dependencies&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25419479&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;&lt;br&gt;Date: Saturday, September 12, 2009, 3:51 PM&lt;br&gt;&lt;br&gt;&lt;div id=&quot;yiv1220294036&quot;&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;br&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;div&gt;&lt;div&gt;Hi Fabio,&lt;br&gt;I've been working on some test driven development functionality for Pydev.&amp;nbsp; While I am psyched that you have been able to open source Pydev Extensions so we can work with the code, I'm having issues with most of the projects not building in linux.&amp;nbsp; This is separate from needing to create the local testing data files--this I have down fine as I've been working with the pydev source from the subversion repo for a while.&amp;nbsp; Rather, after importing the projects from my local git repo, and then dealing with the TestDependent.java, most of the projects indicate red error markers in the package explorer that resolve down to all imports:&lt;br&gt;
import eclipse.org.** &lt;br&gt;not being recognized.&lt;br&gt;When I look at the plugin.xml in any of the affected projects, there are *no* dependencies listed in the
 dependency tab.&amp;nbsp; I have also noted that in the overview tab of the plugin.xml, there is a link to create an osgi
 bundle for the project--so the bundle information is not being read.&amp;nbsp; I also note that the META-INF folder is actually named meta-inf in the package explorer, and the MANIFEST.MF is in lower case as well.&amp;nbsp; I run windows xp in a vm and note that these file names are correctly capitalized, and all of the dependencies show in the plugin.xml dependencies tab.&amp;nbsp; After tweaking the .&lt;br&gt;
I was wondering if this is something that should be fixed in the repo, or perhaps is an issue with git on my end?&lt;br&gt;&lt;br&gt;Have a good one,&lt;br&gt;&lt;font color=&quot;#888888&quot;&gt;Dave&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;
&lt;/div&gt;&lt;br&gt;Hi Dave,&lt;br&gt;&lt;br&gt;That seems really strange... The capitalization of things seems correct for me (at least on my machine) and I've browsed the tree at github (&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://github.com/aptana/Pydev/tree/master&quot;&gt;http://github.com/aptana/Pydev/tree/master&lt;/a&gt;) and it seems correct there too. Also, although I still haven't built Pydev on linux after going to github, it was being regularly built before (doing nightly builds -- right now it's still not ported to github), so, it seems it's something on your side (although I'm not sure what could that be).&lt;br&gt;
&lt;br&gt;Anyone else there building on Linux can verify that?&lt;br&gt;&lt;br&gt;Cheers,&lt;br&gt;&lt;br&gt;Fabio&lt;br&gt;
&lt;/div&gt;&lt;br&gt;-----Inline Attachment Follows-----&lt;br&gt;&lt;br&gt;&lt;div class=&quot;plainMail&quot;&gt;------------------------------------------------------------------------------&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day &lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on &lt;br&gt;what you do best, core application coding. Discover what's new with &lt;br&gt;Crystal Reports now.&amp;nbsp; &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;/div&gt;&lt;br&gt;-----Inline Attachment Follows-----&lt;br&gt;&lt;br&gt;&lt;div class=&quot;plainMail&quot;&gt;_______________________________________________&lt;br&gt;pydev-code mailing list&lt;br&gt;&lt;a ymailto=&quot;mailto:pydev-code@lists.sourceforge.net&quot; href=&quot;/mc/compose?to=pydev-code@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25419479&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pydev-project-dependencies-tp25418678p25419479.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25418937</id>
	<title>Re: Pydev project dependencies</title>
	<published>2009-09-12T15:51:27Z</published>
	<updated>2009-09-12T15:51:27Z</updated>
	<author>
		<name>Fabio Zadrozny</name>
	</author>
	<content type="html">&lt;div class=&quot;gmail_quote&quot;&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;br&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;div&gt;&lt;div&gt;Hi Fabio,&lt;br&gt;I&amp;#39;ve been working on some test driven development functionality for Pydev.  While I am psyched that you have been able to open source Pydev Extensions so we can work with the code, I&amp;#39;m having issues with most of the projects not building in linux.  This is separate from needing to create the local testing data files--this I have down fine as I&amp;#39;ve been working with the pydev source from the subversion repo for a while.  Rather, after importing the projects from my local git repo, and then dealing with the TestDependent.java, most of the projects indicate red error markers in the package explorer that resolve down to all imports:&lt;br&gt;
import eclipse.org.** &lt;br&gt;not being recognized.&lt;br&gt;When I look at the plugin.xml in any of the affected projects, there are *no* dependencies listed in the
 dependency tab.  I have also noted that in the overview tab of the plugin.xml, there is a link to create an osgi
 bundle for the project--so the bundle information is not being read.  I also note that the META-INF folder is actually named meta-inf in the package explorer, and the MANIFEST.MF is in lower case as well.  I run windows xp in a vm and note that these file names are correctly capitalized, and all of the dependencies show in the plugin.xml dependencies tab.  After tweaking the .&lt;br&gt;
I was wondering if this is something that should be fixed in the repo, or perhaps is an issue with git on my end?&lt;br&gt;&lt;br&gt;Have a good one,&lt;br&gt;&lt;font color=&quot;#888888&quot;&gt;Dave&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;
&lt;/div&gt;&lt;br&gt;Hi Dave,&lt;br&gt;&lt;br&gt;That seems really strange... The capitalization of things seems correct for me (at least on my machine) and I&amp;#39;ve browsed the tree at github (&lt;a href=&quot;http://github.com/aptana/Pydev/tree/master&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://github.com/aptana/Pydev/tree/master&lt;/a&gt;) and it seems correct there too. Also, although I still haven&amp;#39;t built Pydev on linux after going to github, it was being regularly built before (doing nightly builds -- right now it&amp;#39;s still not ported to github), so, it seems it&amp;#39;s something on your side (although I&amp;#39;m not sure what could that be).&lt;br&gt;
&lt;br&gt;Anyone else there building on Linux can verify that?&lt;br&gt;&lt;br&gt;Cheers,&lt;br&gt;&lt;br&gt;Fabio&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25418937&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pydev-project-dependencies-tp25418678p25418937.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25418678</id>
	<title>Pydev project dependencies</title>
	<published>2009-09-12T15:09:18Z</published>
	<updated>2009-09-12T15:09:18Z</updated>
	<author>
		<name>Dave Rogers-5</name>
	</author>
	<content type="html">&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font: inherit;&quot;&gt;&lt;div id=&quot;yiv1582960602&quot;&gt;&lt;div id=&quot;yiv676446607&quot;&gt;Hi Fabio,&lt;br&gt;I've been working on some test driven development functionality for Pydev.&amp;nbsp; While I am psyched that you have been able to open source Pydev Extensions so we can work with the code, I'm having issues with most of the projects not building in linux.&amp;nbsp; This is separate from needing to create the local testing data files--this I have down fine as I've been working with the pydev source from the subversion repo for a while.&amp;nbsp; Rather, after importing the projects from my local git repo, and then dealing with the TestDependent.java, most of the projects indicate red error markers in the package explorer that resolve down to all imports:&lt;br&gt;import eclipse.org.** &lt;br&gt;not being recognized.&lt;br&gt;When I look at the plugin.xml in any of the affected projects, there are *no* dependencies listed in the
 dependency tab.&amp;nbsp; I have also noted that in the overview tab of the plugin.xml, there is a link to create an osgi
 bundle for the project--so the bundle information is not being read.&amp;nbsp; I also note that the META-INF folder is actually named meta-inf in the package explorer, and the MANIFEST.MF is in lower case as well.&amp;nbsp; I run windows xp in a vm and note that these file names are correctly capitalized, and all of the dependencies show in the plugin.xml dependencies tab.&amp;nbsp; After tweaking the .&lt;br&gt;I was wondering if this is something that should be fixed in the repo, or perhaps is an issue with git on my end?&lt;br&gt;&lt;br&gt;Have a good one,&lt;br&gt;Dave&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25418678&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pydev-project-dependencies-tp25418678p25418678.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25344242</id>
	<title>Re: Pydevd : reconnect to debug server</title>
	<published>2009-09-08T04:17:38Z</published>
	<updated>2009-09-08T04:17:38Z</updated>
	<author>
		<name>Fabio Zadrozny</name>
	</author>
	<content type="html">Hi Thomas,
&lt;br&gt;&lt;br&gt;Well, I do get your case, but then I believe you want to manage the
&lt;br&gt;debugging a little differently, providing a proper disconnect and
&lt;br&gt;stopping the debugging properly (removing tracing functions and
&lt;br&gt;stopping the threads properly) so that it can be embedded better in
&lt;br&gt;your case -- please create a feature request for that to be
&lt;br&gt;incorporated in the pydev debugger.
&lt;br&gt;&lt;br&gt;The actual overhead of the debugger can change quite a bit, depending
&lt;br&gt;on the breakpoints set and traced contexts (so, it can range from
&lt;br&gt;around 2 to 10 times slower -- although the common case would be
&lt;br&gt;having it around 2-3 times slower, although if you have psyco there it
&lt;br&gt;could be less than that), so, I believe it'd be important for you to
&lt;br&gt;properly stop the debug session.
&lt;br&gt;&lt;br&gt;Another thing is that you can only have 1 debug session at a time,
&lt;br&gt;because of the way that the debugger is set and the python tracing
&lt;br&gt;works, but that's something you have to manage in your own
&lt;br&gt;application.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Fabio
&lt;br&gt;&lt;br&gt;On Tue, Sep 8, 2009 at 5:46 AM, Thomas Johnsson&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25344242&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thomas@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Fabio Zadrozny wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi Thomas,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I think that's correct... actually, the port it was bound to was
&lt;br&gt;&amp;gt;&amp;gt; closed, and it doesn't really try to reconnect.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Is that a common use-case? (as you mentioned you did it by mistake...
&lt;br&gt;&amp;gt;&amp;gt; I believe that happens pretty seldomly, as you don't really have to
&lt;br&gt;&amp;gt;&amp;gt; stop the debugger from eclipse at all -- just start it and leave it
&lt;br&gt;&amp;gt;&amp;gt; running, even with multiple client runs).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; I think it might well become a common use-case in some circumstances.
&lt;br&gt;&amp;gt; The application we have, which we will connect eclipse to as python IDE,
&lt;br&gt;&amp;gt; might typically run may days, maybe even weeks (typically loading a lot
&lt;br&gt;&amp;gt; of user data). In the application the user might do many 'little' python
&lt;br&gt;&amp;gt; editing sessions, some of which may involve debugging.
&lt;br&gt;&amp;gt; In such a case it would be severely inconvenient to restart the application.
&lt;br&gt;&amp;gt; I don't know what the debugging overhead is -- I'm sure you know that
&lt;br&gt;&amp;gt; better -- but it seems a bit half-baked needing to have trace on for the
&lt;br&gt;&amp;gt; whole of the rest of the session just in case.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; -- Thomas
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Fabio
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Thu, Aug 27, 2009 at 5:46 AM, Thomas Johnsson&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25344242&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thomas@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I have questions about the debug server in pydev 1.4.8 (and earlier
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; versions). I do remote debugging, that is, start the debug server in
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; eclipse and connect to it from python code in my external application
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; with pydevd.settrace(....).
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; After a while I stop the debug server (by mistake) in eclipse.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; by pressing stop the debug server in eclipse.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Now it seems that I can't reconnect to the debug server again from my
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; application: pydevd.settrace( ) seems to have no effect. I have to
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; restart my application and use pydevd.settrace again.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Can I reconnect to the debug server without restarting the whole
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; application?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; -- Thomas Johnsson
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Jeppesen Systems, Göteborg, Sweden
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25344242&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25344242&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25344242&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25344242&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pydevd-%3A-reconnect-to-debug-server-tp25169058p25344242.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25342164</id>
	<title>Re: Pydevd : reconnect to debug server</title>
	<published>2009-09-08T01:46:17Z</published>
	<updated>2009-09-08T01:46:17Z</updated>
	<author>
		<name>Thomas Johnsson</name>
	</author>
	<content type="html">Fabio Zadrozny wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Thomas,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I think that's correct... actually, the port it was bound to was
&lt;br&gt;&amp;gt; closed, and it doesn't really try to reconnect.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Is that a common use-case? (as you mentioned you did it by mistake...
&lt;br&gt;&amp;gt; I believe that happens pretty seldomly, as you don't really have to
&lt;br&gt;&amp;gt; stop the debugger from eclipse at all -- just start it and leave it
&lt;br&gt;&amp;gt; running, even with multiple client runs).
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;I think it might well become a common use-case in some circumstances. 
&lt;br&gt;The application we have, which we will connect eclipse to as python IDE, 
&lt;br&gt;might typically run may days, maybe even weeks (typically loading a lot 
&lt;br&gt;of user data). In the application the user might do many 'little' python 
&lt;br&gt;editing sessions, some of which may involve debugging.
&lt;br&gt;In such a case it would be severely inconvenient to restart the application.
&lt;br&gt;I don't know what the debugging overhead is -- I'm sure you know that 
&lt;br&gt;better -- but it seems a bit half-baked needing to have trace on for the 
&lt;br&gt;whole of the rest of the session just in case.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;-- Thomas
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Fabio
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Thu, Aug 27, 2009 at 5:46 AM, Thomas Johnsson&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25342164&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thomas@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; I have questions about the debug server in pydev 1.4.8 (and earlier
&lt;br&gt;&amp;gt;&amp;gt; versions). I do remote debugging, that is, start the debug server in
&lt;br&gt;&amp;gt;&amp;gt; eclipse and connect to it from python code in my external application
&lt;br&gt;&amp;gt;&amp;gt; with pydevd.settrace(....).
&lt;br&gt;&amp;gt;&amp;gt; After a while I stop the debug server (by mistake) in eclipse.
&lt;br&gt;&amp;gt;&amp;gt; by pressing stop the debug server in eclipse.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Now it seems that I can't reconnect to the debug server again from my
&lt;br&gt;&amp;gt;&amp;gt; application: pydevd.settrace( ) seems to have no effect. I have to
&lt;br&gt;&amp;gt;&amp;gt; restart my application and use pydevd.settrace again.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Can I reconnect to the debug server without restarting the whole
&lt;br&gt;&amp;gt;&amp;gt; application?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -- Thomas Johnsson
&lt;br&gt;&amp;gt;&amp;gt; Jeppesen Systems, Göteborg, Sweden
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25342164&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with 
&lt;br&gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; pydev-code mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25342164&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;pydev-code mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25342164&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pydev-code@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/pydev-code&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/pydev-code&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pydevd-%3A-reconnect-to-debug-server-tp25169058p25342164.html" />
</entry>

</feed>
