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
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
> 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
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.
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
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
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
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
[EMAIL PROTECTED] wrote:
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 do
[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
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
take a look at winpdb (which has no relation with Windows-OS !!
cheers,
Stef
--
http://mail.python.org/mailman/listinfo/python-list
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
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
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.
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
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
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
[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
[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
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
[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
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
[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
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
[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
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
[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
[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
>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
[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
[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
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
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 a
Richard Eibrand wrote:
On 4/20/05, Jaime Wyant <[EMAIL PROTECTED]> 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 <[EMAIL PROTECTED]> wrote:
Hi all,
I am new to Py
On 4/20/05, Jaime Wyant <[EMAIL PROTECTED]> 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 <[EMAIL PROTECTED]> wrote:
> > Hi all,
> >
> > I am n
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
37 matches
Mail list logo