Message45387
| Author |
isandler |
| Recipients |
| Date |
2004年10月07日.01:49:11 |
| SpamBayes Score |
| Marked as misclassified |
| Message-id |
| In-reply-to |
| Content |
Logged In: YES
user_id=971153
Yes, here is an example of B3 type of bug
The program:
bagira:~/python/dist/src/Lib> cat pdb_t
x=1
y=2
x=3
and the bug:
bagira:~/python/dist/src/Lib> ../python pdb.py pdb_t
> <string>(1)?()
(Pdb) b pdb_t:2 <-- fails
*** 'pdb_t' not found from sys.path
(Pdb) s
--Call--
> /home/ilya/python/dist/src/Lib/pdb_t(1)?()
-> x=1
(Pdb) b pdb_t:2 <---again fails
*** 'pdb_t' not found from sys.path
(Pdb) b 2 <--but succeeds w/o file name
Breakpoint 1 at /home/ilya/python/dist/src/Lib/pdb_t:2
|
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2007年08月23日 15:32:22 | admin | link | issue896011 messages |
| 2007年08月23日 15:32:22 | admin | create |
|