473,662 Members | 2,376 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Python Debugger with source code tracking ability

Hi all,

I am new to Python and desperated to look for a good Python debugger.
I mean a debugger with source coding tracking. For C/C++, emacs and
gud offers execellent development env. The source code tracking is
extremely useful for recursive functions.

I have spent time Googling but not found anything near.

Thanks!
Tuan-Anh
Jul 19 '05 #1
6 2036
I haven't tried the customizations listed at the site below. If it
works, let me know.

http://page.sourceforge.net/tricks.html

jw

On 19 Apr 2005 19:45:05 -0700, Tran Tuan Anh <an***@hotmail. com> wrote:
Hi all,

I am new to Python and desperated to look for a good Python debugger.
I mean a debugger with source coding tracking. For C/C++, emacs and
gud offers execellent development env. The source code tracking is
extremely useful for recursive functions.

I have spent time Googling but not found anything near.

Thanks!
Tuan-Anh
--
http://mail.python.org/mailman/listinfo/python-list

Jul 19 '05 #2
On 4/20/05, Jaime Wyant <pr***********@ gmail.com> wrote:
I haven't tried the customizations listed at the site below. If it
works, let me know.

http://page.sourceforge.net/tricks.html

jw

On 19 Apr 2005 19:45:05 -0700, Tran Tuan Anh <an***@hotmail. com> wrote:
Hi all,

I am new to Python and desperated to look for a good Python debugger.
I mean a debugger with source coding tracking. For C/C++, emacs and
gud offers execellent development env. The source code tracking is
extremely useful for recursive functions.


You could take a look at Eclipse (http://eclipse.org/) in conjunction
with pydev (http://pydev.sourceforge.net/). Or you could take a look
at Komodo (http://www.activestate.com/Products/Komodo/) which is a
commercial product with a trial version.

Regards,

R
Jul 19 '05 #3
Richard Eibrand wrote:
On 4/20/05, Jaime Wyant <pr***********@ gmail.com> wrote:
I haven't tried the customizations listed at the site below. If it
works, let me know.

http://page.sourceforge.net/tricks.html

jw

On 19 Apr 2005 19:45:05 -0700, Tran Tuan Anh <an***@hotmail. com> wrote:
Hi all,

I am new to Python and desperated to look for a good Python debugger.
I mean a debugger with source coding tracking. For C/C++, emacs and
gud offers execellent development env. The source code tracking is
extremely useful for recursive functions.

You could take a look at Eclipse (http://eclipse.org/) in conjunction
with pydev (http://pydev.sourceforge.net/). Or you could take a look
at Komodo (http://www.activestate.com/Products/Komodo/) which is a
commercial product with a trial version.

For my money it's well worth looking at Wing (http://wingware.com) - the
more I use this system the more I like it, and I especially like the way
I can inspect and set breakpoints in GUI-based code - it can be
wxPython, Tkinter or something else entirely. The ability to execute
ad-hoc Python statements in the context of interrupted code is a godsend
in heavy debugging sessions.

regards
Steve
--
Steve Holden +1 703 861 4237 +1 800 494 3119
Holden Web LLC http://www.holdenweb.com/
Python Web Programming http://pydish.holdenweb.com/

Jul 19 '05 #4
Idle (does have source tracking)
Eclipse + pydev
Eric3 (Linux only)

The problem I have with any of them (as well as my own debugger) is their
speed: I believe they all use bdb that is currently fairly slow stepping
over extensive amount of code

Regards,

Philippe

Tran Tuan Anh wrote:
Hi all,

I am new to Python and desperated to look for a good Python debugger.
I mean a debugger with source coding tracking. For C/C++, emacs and
gud offers execellent development env. The source code tracking is
extremely useful for recursive functions.

I have spent time Googling but not found anything near.

Thanks!
Tuan-Anh


Jul 19 '05 #5

Tran> I am new to Python and desperated to look for a good Python
Tran> debugger. I mean a debugger with source coding tracking. For
Tran> C/C++, emacs and gud offers execellent development env. The source
Tran> code tracking is extremely useful for recursive functions.

There is some support for pdb (the Python debugger) in python-mode. Google
around for pdbtrack. Also, look at Misc/gdbinit in a recent Python
distribution (or use viewcvs in the CVS tab of Python's sourceforge project)
for some gdb magic.

Skip
Jul 19 '05 #6
wxPython is including the ActiveGrid ide as a sample in its latest
point release. The ide includes a debugger that allows you to set
breakpoints in source code, inspect values, etc.

Jul 19 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

65
6725
by: Anthony_Barker | last post by:
I have been reading a book about the evolution of the Basic programming language. The author states that Basic - particularly Microsoft's version is full of compromises which crept in along the language's 30+ year evolution. What to you think python largest compromises are? The three that come to my mind are significant whitespace, dynamic typing, and that it is interpreted - not compiled. These three put python under fire and cause...
220
19000
by: Brandon J. Van Every | last post by:
What's better about Ruby than Python? I'm sure there's something. What is it? This is not a troll. I'm language shopping and I want people's answers. I don't know beans about Ruby or have any preconceived ideas about it. I have noticed, however, that every programmer I talk to who's aware of Python is also talking about Ruby. So it seems that Ruby has the potential to compete with and displace Python. I'm curious on what basis it...
0
1360
by: Raymond Hettinger | last post by:
QOTW: "You're only overlooking the consequences of an infinite amount of information <wink>." -- Tim Peters on why the bitwise-not operator is equivalent to -(n+1). "Perl, Python, Ruby and Tcl are the four dynamic programming languages that get the most publicity as open source projects, and I think they have a lot more in common than they differ." -- Guido van Rossum Discussion
30
4504
by: David Mertz | last post by:
Pythonistas, My loyal fans :-) will remember that I did a Python IDE roundup for _Charming Python_ a couple years back. Now I have another such roundup lined up... not the very next article, but it's there on the list. In the intervening years, I've hardly touched anything one might call an IDE. I've looked at screenshots from time to time, and read various announcements. But really I just use text editors and command lines.
4
3174
by: Glenn Reed | last post by:
This is just a general comment after trying my hand at some serious python programming for the first time. Have played with it for some time but this is the first serious thing I've done with it. (By serious I mean 650 lines of python code written for a client). The version of Python is the ActiveState version for Windows which included PythonWin IDE. Prior to that I learn't Perl and used it for sometime. What I miss with python is...
13
2218
by: Kamilche | last post by:
I love Python, but I'm less than in love with IDLE. It's OK, but it really doesn't have enough capabilities. What I consider critical, are a popdown listing of all my functions, colored syntax printing, and a right-click 'definition' context menu that will hop you to the spot where that keyword is defined, if possible. Everything else I could learn to do without, but these features keep me hoping for a better IDE for Python. I'm used...
0
1869
by: Will | last post by:
Hi all, Please excuse the longish post. I'm new to Python (and programming), but love what I see and believe it to be an important language. I have (at least) one retail client (with single outlet at present) that requires a total business solution for their operation, preferably open source. They need: - an ecommerce website providing sales, customer service, order
0
2137
by: Kenneth McDonald | last post by:
Sorry for crossposting to several lists, but from what I can tell, what I want to do may involve several different areas of expertise. (None of which I have :-( ) I'd like to use Gecko as the UI for an application mostly implemented in Python. Ideally, I'd like to somehow come up with a Python module that wraps the Gecko, so that I can: 1) Create windows whose content is drawn by Gecko. 1) Dynamically manipulate what is shown by Gecko.
32
2835
by: siggi | last post by:
@Ben Sizer Hi Ben, in January I received your message re Pygame and Python 2.5: As a Python (and programming ) newbie allow me a - certainly naive - question:
0
8432
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8343
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8856
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8762
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8633
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7365
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4179
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4347
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2762
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.