Debugging multithreaded program using Eclipse/Pydev

J

John Henry

I am back against the wall trying to migrate my multithreaded
application from Python 2.3 to 2.5. The part of the code that's
failing has to do with queues (2.3 queues and 2.5 queues are not the
same). Since WingIDE doesn't support multithread debugging (they've
been saying that one day they might support that - and that was 2003),
I am starting to look for alternatives.
From what I can gather, it appears the only *real* option I have is to
debug under Eclipse/Pydev. I did a google search of this newsgroup
and didn't turn up too many hits. Before I invest the time to learn
Eclipse/Pydev, I like to hear from somebody that have gone this path.
Have you been successful in using Eclipse/Pydev to debug multi-
threaded Python applications? Is so, what was the learning curve like
to you?

Thanks,
 
M

Michael Bentley

I am back against the wall trying to migrate my multithreaded
application from Python 2.3 to 2.5. The part of the code that's
failing has to do with queues (2.3 queues and 2.5 queues are not the
same). Since WingIDE doesn't support multithread debugging (they've
been saying that one day they might support that - and that was 2003),
I am starting to look for alternatives.

The alpha release of Wing IDE (3.0.0-a1) does in fact, support
multithread debugging. It is an alpha release but so far, I'm quite
satisfied with it.

hth,
Michael
 
J

John Henry

The alpha release of Wing IDE (3.0.0-a1) does in fact, support
multithread debugging. It is an alpha release but so far, I'm quite
satisfied with it.

hth,
Michael


That's nice to know. May be I can get on their alpha list.

Thanks,
 
R

Ritesh Raj Sarraf

John said:
debug under Eclipse/Pydev.  I did a google search of this newsgroup
and didn't turn up too many hits.  Before I invest the time to learn
Eclipse/Pydev, I like to hear from somebody that have gone this path.
Have you been successful in using Eclipse/Pydev to debug multi-
threaded Python applications?  Is so, what was the learning curve like
to you?

I use pydev extensively for all my Python related work. And I really love
it.

The good part about Eclipse/PyDev is that (if you are an Eclipse user)
you'll have to learn only a single IDE for all your programming works in
most of the languages. The interface, the shortcut keys to step, all are
the same across all languages that you use in Eclipse.

As for PyDev, it works very good with Eclipse.
Be it code-completion or thread debugging, all is supported. For
multithreaded applications, in PyDev, you'll see all the threads listed.
Then you can use each thread and proceed with debugging the code.

Learning Eclipse might take some time but that's worth it.

HTH,
Ritesh
--
Ritesh Raj Sarraf
RESEARCHUT - http://www.researchut.com
"Necessity is the mother of invention."
"Stealing logic from one person is plagiarism, stealing from many is
research."
"The great are those who achieve the impossible, the petty are those who
cannot - rrs"
 
H

Heikki Toivonen

John said:
debug under Eclipse/Pydev. I did a google search of this newsgroup
and didn't turn up too many hits. Before I invest the time to learn
Eclipse/Pydev, I like to hear from somebody that have gone this path.
Have you been successful in using Eclipse/Pydev to debug multi-
threaded Python applications? Is so, what was the learning curve like
to you?

ActiveState Komodo can also do multithreaded debugging.

And if all else fails, you can insert:

import pdb
pdb.set_trace()

in your code and that way you will break on any thread.

Currently I am using pydev myself, having gone through WingIDE and Komodo.
 
J

John Henry

ActiveState Komodo can also do multithreaded debugging.

And if all else fails, you can insert:

import pdb
pdb.set_trace()

in your code and that way you will break on any thread.

Currently I am using pydev myself, having gone through WingIDE and Komodo.


I ran the alpha version of Wing. So far, it appears to do a fine job
in debugging multi-threaded applications.

And yes, I fixed my bug within 5 minutes.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

PyDev 3.1.0 released 0
PyDev 3.5.0 Released 0
PyDev and multithreaded application debug 1
PyDev 3.0 Released 2
PyDev 3.3.3 Released 0
PyDev 2.8.2 released 0
PyDev 3.4.1 Released 0
PyDev 2.8.0 Released 0

Members online

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,056
Latest member
GlycogenSupporthealth

Latest Threads

Top