Message62

Author bckfnn
Recipients
Date 2000-11-18.19:05:24
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
If you call pdb, then quit from pdb, then call pdb again, it
returns back immediately to the interactive prompt.

This works correctly in CPython 1.5.2 as shown below.

JPython 1.1beta3 on java1.2.2 (JIT: null)
Copyright (C) 1997-1999 Corporation for National Research Initiatives
>>> import pdb
>>> pdb.run('')
--Return--
> <string>(0)?()->None
(Pdb) q
>>> pdb.run('')
>>>


CPython 1.5.2:
-------------
Python 1.5.2 (#0, Apr 13 1999, 10:51:12) [MSC 32 bit (Intel)] on win32
Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
>>> import pdb
>>> pdb.run('')
> <string>(0)?()
(Pdb) q
>>> pdb.run('')
> <string>(0)?()
(Pdb) q
>>>
History
Date User Action Args
2008-02-20 17:16:39adminlinkissue222812 messages
2008-02-20 17:16:39admincreate