Re: Python pdb bug, followed by bug in bugs.python.org

2013-04-13 Thread Ned Deily
In article , Piotr Dobrogost wrote: > On Thursday, April 11, 2013 5:12:53 PM UTC+2, donald...@gmail.com wrote: > > I just submitted a bug report on the pdb issue. > It would be nice of you to share the link to this issue. http://bugs.python.org/issue17697 -- Ned Deily, n...@acm.org -- ht

Re: Python pdb bug, followed by bug in bugs.python.org

2013-04-13 Thread Piotr Dobrogost
On Thursday, April 11, 2013 5:12:53 PM UTC+2, donald...@gmail.com wrote: > > I just submitted a bug report on the pdb issue. It would be nice of you to share the link to this issue. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python pdb bug, followed by bug in bugs.python.org

2013-04-11 Thread Ian Kelly
On Thu, Apr 11, 2013 at 12:42 PM, Robert Kern wrote: > Use `where` to see the problem: Ah. Then I can verify that the problem occurs in Windows as well: C:\Users\ikelly\Desktop>c:\python33\python python_bug.py first call --Return-- > c:\users\ikelly\desktop\python_bug.py(7)foo()->None -> pdb.se

Re: Python pdb bug, followed by bug in bugs.python.org

2013-04-11 Thread Robert Kern
On 2013-04-11 23:11, Ian Kelly wrote: On Thu, Apr 11, 2013 at 8:56 AM, wrote: #! /usr/bin/env python3 import pdb def foo(message): print(message) pdb.set_trace() foo('first call') foo('second call') Stick this in an file with execute permission and run it. At the first brea

Re: Python pdb bug, followed by bug in bugs.python.org

2013-04-11 Thread Ian Kelly
On Thu, Apr 11, 2013 at 8:56 AM, wrote: > #! /usr/bin/env python3 > import pdb > def foo(message): > print(message) > pdb.set_trace() > foo('first call') > foo('second call') > > Stick this in an file with execute permission and run it. At the first > breakpoint, the backtrace wi

Re: Python pdb bug, followed by bug in bugs.python.org

2013-04-11 Thread donaldcallen
On Tuesday, April 9, 2013 6:17:28 PM UTC-4, Ned Deily wrote: > In article , > > donallen wrote: > > > > > I am I've developed an application in Python 3.3.1 (on an up-to-date 64-bit > > > Arch Linux system) and am attempting to use pdb to debug it. I am getting > > > incorrect stack traces

Re: Python pdb bug, followed by bug in bugs.python.org

2013-04-11 Thread donaldcallen
> > Suggestions? > > > > Post the 10-line program here, so others can verify whether it is a bug. #! /usr/bin/env python3 import pdb def foo(message): print(message) pdb.set_trace() foo('first call') foo('second call') Stick this in an file with execute permission and run it.

Re: Python pdb bug, followed by bug in bugs.python.org

2013-04-10 Thread Ned Deily
In article , Gregory Ewing wrote: > Ned Deily wrote: > > There is a meta tracker for problems with the Python > > issuer tracker itself: > > http://psf.upfronthosting.co.za/roundup/meta/ > > but you do have to register for that tracker (a separate registration). > You mean there's no meta-meta

Re: Python pdb bug, followed by bug in bugs.python.org

2013-04-10 Thread Gregory Ewing
Ned Deily wrote: There is a meta tracker for problems with the Python issuer tracker itself: http://psf.upfronthosting.co.za/roundup/meta/ but you do have to register for that tracker (a separate registration). You mean there's no meta-meta-tracker for reporting problems registering with t

Re: Python pdb bug, followed by bug in bugs.python.org

2013-04-09 Thread Ned Deily
In article , donaldcal...@gmail.com wrote: > I am I've developed an application in Python 3.3.1 (on an up-to-date 64-bit > Arch Linux system) and am attempting to use pdb to debug it. I am getting > incorrect stack traces. I've made up a little 10-line program that > illustrates the problem an

Re: Python pdb bug, followed by bug in bugs.python.org

2013-04-09 Thread John Gordon
In donaldcal...@gmail.com writes: > I am I've developed an application in Python 3.3.1 (on an up-to-date 64-bit= > Arch Linux system) and am attempting to use pdb to debug it. I am getting = > incorrect stack traces. I've made up a little 10-line program that illustra= > tes the problem and I a

Re: Python pdb bug, followed by bug in bugs.python.org

2013-04-09 Thread Arnaud Delobelle
On 9 April 2013 16:25, wrote: > I am I've developed an application in Python 3.3.1 (on an up-to-date 64-bit > Arch Linux system) and am attempting to use pdb to debug it. I am getting > incorrect stack traces. I've made up a little 10-line program that > illustrates the problem and I attempted

Python pdb bug, followed by bug in bugs.python.org

2013-04-09 Thread donaldcallen
I am I've developed an application in Python 3.3.1 (on an up-to-date 64-bit Arch Linux system) and am attempting to use pdb to debug it. I am getting incorrect stack traces. I've made up a little 10-line program that illustrates the problem and I attempted to register on the bug-tracker site, u