[pydev - Users] Do I have Pydev Extensions?

View: New views
6 Messages — Rating Filter:   Alert me  

[pydev - Users] Do I have Pydev Extensions?

by SourceForge.net :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5101195
By: dwarnold

All,

Downloaded Ganymede (Eclipse Classic 3.4 ) for Mac OS X. Used "Software Updates"
on Help menu to install Pydev and Pydev extensions. But I don't see Pydev Extensions
in my Preferences Pane under Pydev as shown on for example:

http://www.fabioz.com/pydev/manual_adv_markoccurrences.html

But Software Updates and Add-ons shows:

PyDev for Eclipse  1.3.18
PyDev Mylyn Integration 0.3.0

Am I missing something here?

David.

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=293649

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Pydev-users mailing list
Pydev-users@...
https://lists.sourceforge.net/lists/listinfo/pydev-users

[pydev - Users] RE: Do I have Pydev Extensions?

by SourceForge.net :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5101816
By: fabioz

It should show 'Pydev Extensions 1.3.18', so, it appears you don't have
it installed... Have you used the http://fabioz.com/pydev/updates/ update site?

Cheers,

Fabio

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=293649

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Pydev-users mailing list
Pydev-users@...
https://lists.sourceforge.net/lists/listinfo/pydev-users

[pydev - Users] RE: Do I have Pydev Extensions?

by SourceForge.net :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5102014
By: dwarnold

Fabio,

Thanks. That did the trick.

D.

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=293649

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Pydev-users mailing list
Pydev-users@...
https://lists.sourceforge.net/lists/listinfo/pydev-users

autocompletion problems on simple class

by Lee Connell :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.
Below is a simple class which does not autocomplete the cls instance.  If you type "cls." it will not bring up anything, which it should show "mymethod". I tried this with europa and ganymede with pydev 1.3.18, python2.5, java 5.0, windows xp and linux 2.6.

class myclass():
    def mymethod(self, hello):
        print hello
       
cls = myclass()
cls.mymethod('hello')


Keep your kids safer online with Windows Live Family Safety. Help protect your kids.
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Pydev-users mailing list
Pydev-users@...
https://lists.sourceforge.net/lists/listinfo/pydev-users

Re: autocompletion problems on simple class

by Tim Diggins (Subs) :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

This does seem to be true, and is ONLY true if the variable name is cls.
(NB - I think a typo in original -  the first line "class myclass():" needs to be either "class myclass:" or "class myclass(object):")

Workaround: don't use the variable cls (after all that's a more-or-less standard for the first argument of classmethods)

However, it does seem odd, so I've made a bug report of it:

-- Tim

 
On 17 Jul 2008, at 14:50, Lee Connell wrote:

Below is a simple class which does not autocomplete the cls instance.  If you type "cls." it will not bring up anything, which it should show "mymethod". I tried this with europa and ganymede with pydev 1.3.18, python2.5, java 5.0, windows xp and linux 2.6.

class myclass():
    def mymethod(self, hello):
        print hello
        
cls = myclass()
cls.mymethod('hello')





-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Pydev-users mailing list
Pydev-users@...
https://lists.sourceforge.net/lists/listinfo/pydev-users

Re: autocompletion problems on simple class

by Fabio Zadrozny-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I think that's mostly because pydev gives a different treatment for 'cls' and 'self' (I know python does not enforce anything, but those are so standard that pydev does treat it differently)

Cheers,

Fabio

On Thu, Jul 17, 2008 at 11:40 AM, Tim Diggins <subscribed@...> wrote:
This does seem to be true, and is ONLY true if the variable name is cls.
(NB - I think a typo in original -  the first line "class myclass():" needs to be either "class myclass:" or "class myclass(object):")

Workaround: don't use the variable cls (after all that's a more-or-less standard for the first argument of classmethods)

However, it does seem odd, so I've made a bug report of it:

-- Tim

 
On 17 Jul 2008, at 14:50, Lee Connell wrote:

Below is a simple class which does not autocomplete the cls instance.  If you type "cls." it will not bring up anything, which it should show "mymethod". I tried this with europa and ganymede with pydev 1.3.18, python2.5, java 5.0, windows xp and linux 2.6.

class myclass():
    def mymethod(self, hello):
        print hello
        
cls = myclass()
cls.mymethod('hello')








-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Pydev-users mailing list
Pydev-users@...
https://lists.sourceforge.net/lists/listinfo/pydev-users



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Pydev-users mailing list
Pydev-users@...
https://lists.sourceforge.net/lists/listinfo/pydev-users
LightInTheBox - Buy quality products at wholesale price