NoPdb 0.1.0 – Non-interactive Python Debugger

2021-04-06 Thread Ondřej Cífka
nopdb Docs: https://nopdb.readthedocs.io/ GitHub: https://github.com/cifkao/nopdb License: BSD-3-Clause https://github.com/cifkao/nopdb;>NoPdb 0.1.0, a non-interactive Python debugger. (06-Apr-21) ___ Python-announce-list mailing list -- python-announce-li

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

Python Debugger tool

2013-09-06 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

Re: Python Debugger tool

2013-09-06 Thread Rafael Durán Castañeda
El 06/09/2013, a las 08:14, chandan kumar chandan_...@yahoo.co.in 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

Re: Python Debugger tool

2013-09-06 Thread Fabio Zadrozny
On Fri, Sep 6, 2013 at 3:14 AM, chandan kumar chandan_...@yahoo.co.inwrote: 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

[issue17971] Weird interaction between Komodo Python debugger C module Python 3

2013-05-15 Thread Eric Promislow
Eric Promislow added the comment: I found a workaround in our debugger code, so you can lower the priority on this, or even mark it Wontfix, although I still think the frame stack is getting messed up. One thing about our debugger, it essentially runs all the Python code in a big exec

[issue17971] Weird interaction between Komodo Python debugger C module Python 3

2013-05-15 Thread Benjamin Peterson
Benjamin Peterson added the comment: If you ever find a Python bug, feel free to reopen. -- resolution: - invalid status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17971

[issue17971] Weird interaction between Komodo Python debugger C module Python 3

2013-05-13 Thread Eric Promislow
New submission from Eric Promislow: While much of Komodo's source code has been released under MIT/GPL/LGPL, the Python debugger hasn't, so I can't post it here. We can work out an arrangement later, although it might not be necessary once I describe the problem: Komodo's Python debugger

[issue17971] Weird interaction between Komodo Python debugger C module Python 3

2013-05-13 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +georg.brandl, ncoghlan ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17971 ___ ___

[issue17971] Weird interaction between Komodo Python debugger C module Python 3

2013-05-13 Thread Benjamin Peterson
Benjamin Peterson added the comment: Since this seems to be some sort of interaction between Komodo's code and Python (it works for me with vanilla Python 3), it's going to be hard to debug without seeing what this other thing is doing. -- nosy: +benjamin.peterson

[issue17971] Weird interaction between Komodo Python debugger C module Python 3

2013-05-13 Thread Eric Promislow
Eric Promislow added the comment: I'm running it inside gdb to see if I can figure it out. I don't see a way of isolating this from the whole product. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17971

Python debugger release 0.2.0

2013-01-01 Thread rocky . bernstein
pydbgr is a somewhat large Python debugger modelled on the gdb command set. (Yes, I know this name is really horrible). I am pleased (or is it relieved?) to release a version of pydbr that has a couple of features I have in other debuggers I've written, namely: 1. Terminal output is now syntax

[issue6246] Python debugger ignores exception if instructed to return from generator

2010-07-30 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: This is no special behavior with generators. If you remove the yield statement, you will get similar output with the exception bubbling up the stack. -- nosy: +georg.brandl resolution: - works for me status: open - closed

[issue6246] Python debugger ignores exception if instructed to return from generator

2010-07-10 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I can reproduce this on Windows Vista. -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6246

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 to

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

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

Re: Python debugger

2009-07-03 Thread Clovis Fabricio
2009/7/3 srinivasan srinivas sri_anna...@yahoo.co.in: 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 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

Re: Python debugger

2009-07-03 Thread Clovis Fabricio
2009/7/3 Kee Nethery k...@kagi.com: 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

Re: Python debugger

2009-07-03 Thread Simon Forman
On Jul 3, 8:15 am, srinivasan srinivas sri_anna...@yahoo.co.in 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. --

[issue6246] Python debugger ignores exception if instructed to return from generator

2009-06-08 Thread Andreas Kloeckner
Changes by Andreas Kloeckner inf...@tiker.net: -- title: Python bebugger ignores exception if instructed to return from generator - Python debugger ignores exception if instructed to return from generator ___ Python tracker rep...@bugs.python.org

Re: python debugger tips?

2008-10-16 Thread Pat
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 and interact

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

python debugger tips?

2008-10-10 Thread just . another . random . user
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 interact with the debugger from the interactive prompt. Thanks! Y -- http://mail.python.org

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

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 --

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

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 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-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 low-cost

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? snip 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 --

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

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 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, a

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 like SPE

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 --

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

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 --

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

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 -- René

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 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

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 three

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 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

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 second that.

ANN: Extended Python debugger 1.14

2006-02-28 Thread R. Bernstein
Download from http://sourceforge.net/project/showfiles.php?group_id=61395package_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=61395package_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=61395package_id=175827 For this release documentation has been added. That is also available online at: http://bashdb.sourceforge.net/pydb/pydb/lib

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 using python

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 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 number

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

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 promising ;) Also, don't

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 switch

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.

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

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: 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 this

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. I mean

Re: Python Debugger with source code tracking ability

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

Re: Python Debugger with source code tracking ability

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

Re: Python Debugger with source code tracking ability

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

Re: Python Debugger with source code tracking ability

2005-04-20 Thread Skip Montanaro
. 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

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