A programmable python debugger. Set one breakpoint to x-ray everything

2017-10-09 Thread H.C. Chen
peforth If the below explanations would be messy please directly refer to README.md @ https://github.com/hcchengithub/peforth A programmable python debugger. Set one breakpoint to x-ray everything. You guys know how to bebug already. We all do. But when it comes to Machine Learning and

Re: Python Debugger tool

2013-09-06 Thread Fabio Zadrozny
On Fri, Sep 6, 2013 at 3:14 AM, chandan kumar wrote: > Hi > > Is any one aware of free ipython debugger tool.How good is this tool for > a beginner to use like ,placing breakpoints,checking variables ,call stack > (function flow) etc.I don't like to use python PDB . > I have heard about wingware

Re: Python Debugger tool

2013-09-05 Thread Rafael Durán Castañeda
El 06/09/2013, a las 08:14, chandan kumar escribió: > Hi > > Is any one aware of free ipython debugger tool.How good is this tool for a > beginner to use like ,placing breakpoints,checking variables ,call stack > (function flow) etc.I don't like to use python PDB . > I have heard about wing

Python Debugger tool

2013-09-05 Thread chandan kumar
Hi Is any one aware of free ipython debugger tool.How good is this tool for a beginner to use like ,placing breakpoints,checking variables ,call stack (function flow) etc.I don't like to use python PDB . I have heard about wingware ,pycharm which are licensed versions.Used wingware trail ve

Re: Python debugger

2009-07-04 Thread Fabio Zadrozny
> Hi, > Could you suggest some python debuggers? > > Thanks, > Srini Pydev has a debugger that supports the common debugger features (watches, multiple threads, breakpoints, conditional breakpoints, step in, out, etc -- http://fabioz.com/pydev/manual_adv_debugger.html ), and pydev extensions adds

Re: Python debugger

2009-07-03 Thread Simon Forman
On Jul 3, 8:15 am, srinivasan srinivas wrote: > Hi, > Could you suggest some python debuggers? > > Thanks, > Srini > >       Love Cricket? Check out live scores, photos, video highlights and more. > Click herehttp://cricket.yahoo.com Ipython has good debugger integration. -- http://mail.python.

Re: Python debugger

2009-07-03 Thread Clovis Fabricio
2009/7/3 Kee Nethery : > It's not free but I like the debugger in Komodo IDE. > Lets me simulate a web connection, lets me step through the code and examine > the variables as it executes, can be run remotely (have not played with that > aspect yet). > Does variable inspection of the variables so y

Re: Python debugger

2009-07-03 Thread Kee Nethery
It's not free but I like the debugger in Komodo IDE. Lets me simulate a web connection, lets me step through the code and examine the variables as it executes, can be run remotely (have not played with that aspect yet). Does variable inspection of the variables so you can dive into the parts

Re: Python debugger

2009-07-03 Thread Clovis Fabricio
2009/7/3 srinivasan srinivas : > Could you suggest some python debuggers? Two graphical debugger frontends: http://www.gnu.org/software/emacs/ http://winpdb.org/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python debugger

2009-07-03 Thread Bruno Desthuilliers
srinivasan srinivas a écrit : Hi, Could you suggest some python debuggers? http://docs.python.org/library/pdb.html#module-pdb HTH -- http://mail.python.org/mailman/listinfo/python-list

Python debugger

2009-07-03 Thread srinivasan srinivas
Hi, Could you suggest some python debuggers? Thanks, Srini Love Cricket? Check out live scores, photos, video highlights and more. Click here http://cricket.yahoo.com -- http://mail.python.org/mailman/listinfo/python-list

Re: python debugger tips?

2008-10-16 Thread Pat
rl you can do this: Does anyone have advice on any macros or something that i could use to do this? Additionally, what do people recommend as good "advanced" python debugger guides? Explaining breakpoints and all is useful, but I really want to know how to make sophisticated macros a

Re: python debugger tips?

2008-10-11 Thread Bruno Desthuilliers
[EMAIL PROTECTED] a écrit : Hi All, I'm switching to python from perl, and like the language a ton, but I find pdb and pydb to be vastly inferior debuggers to the perl version. In particular, I've grown very used to stepping into arbitrary functions interactively. For instance, in perl you can

Re: python debugger tips?

2008-10-10 Thread aizenman
On Oct 10, 5:58 pm, Stef Mientki <[EMAIL PROTECTED]> wrote: > take a look at winpdb (which has no relation with Windows-OS !! > > cheers, > Stef Looks pretty cool; sadly, our sysadmin refuses to install wxwindows, and the commandline version is fairly cryptic... Thanks! Y -- http://mail.python.or

Re: python debugger tips?

2008-10-10 Thread Stef Mientki
take a look at winpdb (which has no relation with Windows-OS !! cheers, Stef -- http://mail.python.org/mailman/listinfo/python-list

python debugger tips?

2008-10-10 Thread just . another . random . user
t of values. Does anyone have advice on any macros or something that i could use to do this? Additionally, what do people recommend as good "advanced" python debugger guides? Explaining breakpoints and all is useful, but I really want to know how to make sophisticated macros and

Re: Python Debugger / IDE ??

2006-03-30 Thread Magnus Lycka
Don Taylor wrote: > Is there a free or low-cost version of Delphi for Windows available > anywhere? Sure. If my memory serves me correctly, I have several CDs from various computer magazines with previous versions of Delphi at home. I don't know if such offers have been around recently, but you

Re: Python Debugger / IDE ??

2006-03-29 Thread Christoph Zwerschke
Don Taylor wrote: > Is there a free or low-cost version of Delphi for Windows available > anywhere? I don't know (never used Delphi actually). Anyway, you don't need to have Delphi to use PyScripter, and PyScripter is completely free. However, it will only run on Windows because it is developed

Pythonic debugging - Re: Python Debugger / IDE ??

2006-03-17 Thread robert
bruno at modulix wrote: > [EMAIL PROTECTED] wrote: > >>Is there any editor or IDE in Python (either Windows or Linux) which >>has very good debugging facilites like MS VisualStudio has or something >>like that. >> >>I like SPE but couldn't easily use winPDP. I need tips to debug my code >>easily.

Re: Python Debugger / IDE ??

2006-03-16 Thread Rowdy
Don Taylor wrote: > Is there a free or low-cost version of Delphi for Windows available > anywhere? > There used to be a Delphi 6 Personal Edition that was available free (for non-commercial use). You might still find it around somewhere. Rowdy -- http://mail.python.org/mailman/listinfo/pyt

Re: Python Debugger / IDE ??

2006-03-16 Thread Don Taylor
Christoph Zwerschke wrote: > [EMAIL PROTECTED] wrote: > >>I like the Pyscripter, is there any Linux version or something of it. > > > Sorry, I forgot to mention that there is a snag in it. Since PyScripter > is based on Python for Delphi, it is available for Windows only. > Is there a free or

Re: Python Debugger / IDE ??

2006-03-16 Thread Ritesh Raj Sarraf
Can you please point some good documents (need not be Python specific) on best practices with writing code this way ? Thanks, Ritesh -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Debugger / IDE ??

2006-03-15 Thread Bruno Desthuilliers
[EMAIL PROTECTED] a écrit : > My code has got big How big ? More than 50 kloc ?-) Big project doesn't imply long functions nor fat classes. > and it is an iterative program. Sorry, I don't understand what you mean by "iterative" here. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Debugger / IDE ??

2006-03-15 Thread Christoph Zwerschke
[EMAIL PROTECTED] wrote: > I like the Pyscripter, is there any Linux version or something of it. Sorry, I forgot to mention that there is a snag in it. Since PyScripter is based on Python for Delphi, it is available for Windows only. -- Christoph -- http://mail.python.org/mailman/listinfo/pytho

Re: Python Debugger / IDE ??

2006-03-15 Thread krypto . wizard
I like the Pyscripter, is there any Linux version or something of it. Christoph Zwerschke wrote: > [EMAIL PROTECTED] schrieb: > > Is there any editor or IDE in Python (either Windows or Linux) which > > has very good debugging facilites like MS VisualStudio has or something > > like that. > > > > I

Re: Python Debugger / IDE ??

2006-03-15 Thread Christoph Zwerschke
[EMAIL PROTECTED] schrieb: > Is there any editor or IDE in Python (either Windows or Linux) which > has very good debugging facilites like MS VisualStudio has or something > like that. > > I like SPE but couldn't easily use winPDP. I need tips to debug my code > easily. You can try out PyScripter

Re: Python Debugger / IDE ??

2006-03-15 Thread jean-michel bain-cornu
bruno at modulix wrote: > FWIW, I've almost never used a debugger with Python. It's pourtant very simpa from time to time ! -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Debugger / IDE ??

2006-03-15 Thread jean-michel bain-cornu
[EMAIL PROTECTED] wrote: > I've always been happy with the debugger in PythonWin. You can even > use: > > from pywin.debugger import set_trace;set_trace() > > to bring up the debugger directly from a script that wasn't originally > run in the ide. I use that one also. There is also Boa (http://b

Re: Python Debugger / IDE ??

2006-03-14 Thread Felipe Almeida Lessa
Em Ter, 2006-03-14 às 09:44 -0800, [EMAIL PROTECTED] escreveu: > >Is there any editor or IDE in Python (either Windows or Linux) which > >has very good debugging facilites like MS VisualStudio has or something > >like that. > > I've been using Eclipse with PyDev and am very happy with it. I secon

Re: Python Debugger / IDE ??

2006-03-14 Thread Larry Bates
[EMAIL PROTECTED] wrote: > Is there any editor or IDE in Python (either Windows or Linux) which > has very good debugging facilites like MS VisualStudio has or something > like that. > > I like SPE but couldn't easily use winPDP. I need tips to debug my code > easily. > > Every help is greatly ap

Re: Python Debugger / IDE ??

2006-03-14 Thread krypto . wizard
My code has got big and it is an iterative program. I use print statements but I thought I could get something handy it would be useful to me. thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Debugger / IDE ??

2006-03-14 Thread bruno at modulix
[EMAIL PROTECTED] wrote: > Is there any editor or IDE in Python (either Windows or Linux) which > has very good debugging facilites like MS VisualStudio has or something > like that. > > I like SPE but couldn't easily use winPDP. I need tips to debug my code > easily. pythonic "debugging" in thre

Re: Python Debugger / IDE ??

2006-03-14 Thread Scott David Daniels
[EMAIL PROTECTED] wrote: > Is there any editor or IDE in Python (either Windows or Linux) which > has very good debugging facilites like MS VisualStudio has or something > like that. > > I like SPE but couldn't easily use winPDP. I need tips to debug my code > easily. > > Every help is greatly ap

Re: Python Debugger / IDE ??

2006-03-14 Thread [EMAIL PROTECTED]
>Is there any editor or IDE in Python (either Windows or Linux) which >has very good debugging facilites like MS VisualStudio has or something >like that. I've been using Eclipse with PyDev and am very happy with it. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Debugger / IDE ??

2006-03-14 Thread Rene Pijlman
[EMAIL PROTECTED]: >Is there any editor or IDE in Python (either Windows or Linux) which >has very good debugging facilites like MS VisualStudio has or something >like that. Here's a recent thread about IDEs: http://groups.google.nl/group/comp.lang.python/browse_frm/thread/fd9604e225252ad4 -- Re

Re: Python Debugger / IDE ??

2006-03-14 Thread olsongt
[EMAIL PROTECTED] wrote: > Is there any editor or IDE in Python (either Windows or Linux) which > has very good debugging facilites like MS VisualStudio has or something > like that. > > I like SPE but couldn't easily use winPDP. I need tips to debug my code > easily. > > Every help is greatly app

Python Debugger / IDE ??

2006-03-14 Thread krypto . wizard
Is there any editor or IDE in Python (either Windows or Linux) which has very good debugging facilites like MS VisualStudio has or something like that. I like SPE but couldn't easily use winPDP. I need tips to debug my code easily. Every help is greatly appreciated. Thanks -- http://mail.pytho

ANN: Extended Python debugger 1.14

2006-02-28 Thread R. Bernstein
Download from http://sourceforge.net/project/showfiles.php?group_id=61395&package_id=175827 On-line documentation is at http://bashdb.sourceforge.net/pydb/pydb/lib/index.html Changes since 1.12 * Add MAN page (from Debian) * Bump revision to 0.12 to 1.13 to be compatible with Debian pydb package.

ANN: Extended Python debugger 0.12

2006-02-21 Thread R. Bernstein
This third release of an improved debugger also probably about as great as the last release. Download from http://sourceforge.net/project/showfiles.php?group_id=61395&package_id=175827 On-line documentation is at http://bashdb.sourceforge.net/pydb/pydb/lib/index.html Along with this release is a

ANN: (slightly) extended Python debugger 0.11

2006-01-29 Thread R. Bernstein
The second public release of the extended Python debugger is now available from sourceforge: http://sourceforge.net/project/showfiles.php?group_id=61395&package_id=175827 For this release documentation has been added. That is also available online at: http://bashdb.sourceforge.net/pydb/pydb

ANN: (slightly) extended Python debugger

2006-01-12 Thread R. Bernstein
I've put out the first release of an expanded version of the Python debugger. For now it is under the bashdb project on sourceforge: http://sourceforge.net/project/showfiles.php?group_id=61395 I've tried this only on 3 machines and each had a different version of Python: OSX us

Re: new python debugger

2005-08-12 Thread spe . stani . be
It will be integrated in the next release of SPE 0.7.5.b, as you can already see screenshots. For those who are impatient, check out the SVN. Stani http://pythonide.stani.be http://pythonide.stani.be/screenshots -- http://mail.python.org/mailman/listinfo/python-list

Re: new python debugger

2005-08-11 Thread Franz Steinhaeusler
On 11 Aug 2005 05:19:31 -0700, [EMAIL PROTECTED] wrote: >Thanks for the valuable input. I will look into it. You're welcome. > >In the mean time, until I implement your suggestions, here are some >workarounds for the problems you experienced. >[...] Really, you want to implement? cool ;) If you

Re: new python debugger

2005-08-11 Thread nir1408
Thanks for the valuable input. I will look into it. In the mean time, until I implement your suggestions, here are some workarounds for the problems you experienced. 1. In the "Open Source" dialog, instead of typing the full path of the script you wish to load, try typing just its name (e.g. 'foo

Re: new python debugger

2005-08-11 Thread Franz Steinhaeusler
On Thu, 11 Aug 2005 13:09:08 +0200, Franz Steinhaeusler <[EMAIL PROTECTED]> wrote: >> >>Winpdb is still a BETA despite the version number which is 1.0.1 >>so I will appreciate feedback on bugs, unexpected behavior, or >>suggestions. List of current breakpoints (VC Alt-F9), where you can quickly s

Re: new python debugger

2005-08-11 Thread Franz Steinhaeusler
On 10 Aug 2005 23:10:57 -0700, [EMAIL PROTECTED] wrote: Hello Nir, >Thanks for the compliments. > >I really believe Winpdb is not just another Python debugger, and that >it will be a real step forward in the quality of Python debuggers once >it matures. Yes, looks very promi

Re: new python debugger

2005-08-11 Thread Neil Hodgson
Nir: > Winpdb is still a BETA despite the version number which is 1.0.1 > so I will appreciate feedback on bugs, unexpected behavior, or > suggestions. Value tips when you hover over variables in the editor would be useful. A hovering user can be detected with the wxEVT_STC_DWELLSTART notif

Re: new python debugger

2005-08-10 Thread nir1408
Thanks for the compliments. I really believe Winpdb is not just another Python debugger, and that it will be a real step forward in the quality of Python debuggers once it matures. Also, don't worry about the .com url, it is a GPL debugger. Winpdb is still a BETA despite the version n

Re: new python debugger

2005-08-09 Thread Franz Steinhäusler
On 9 Aug 2005 03:52:00 -0700, "mrelectron" <[EMAIL PROTECTED]> wrote: >hi: > >Nir Aides who wrote the rpdb debugger has enhanced it and stuck a >frontend on it whoo-hoo. it is fantastico! see and download it at >http://www.digitalpeers.com/pythondebugger/ > >cheers mark Hello Mark, thank you for

new python debugger

2005-08-09 Thread mrelectron
hi: Nir Aides who wrote the rpdb debugger has enhanced it and stuck a frontend on it whoo-hoo. it is fantastico! see and download it at http://www.digitalpeers.com/pythondebugger/ cheers mark -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Debugger with source code tracking ability

2005-04-20 Thread Skip Montanaro
s. 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 -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Debugger with source code tracking ability

2005-04-20 Thread Philippe C. Martin
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

Re: Python Debugger with source code tracking ability

2005-04-20 Thread Steve Holden
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:/

Re: Python Debugger with source code tracking ability

2005-04-20 Thread Richard Eibrand
CTED]> 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 > > extr

Re: Python Debugger with source code tracking ability

2005-04-20 Thread Jaime Wyant
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 <[EMAIL PROTECTED]> wrote: > Hi all, > > I am new to Python and desperated to look for a good

Python Debugger with source code tracking ability

2005-04-19 Thread Tran Tuan Anh
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