Is anybody else getting this?

Python 2.5a1 (trunk:45237, Apr 10 2006, 15:25:33)
[GCC 3.2.2 20030222 (Red Hat Linux 3.2.2-5)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
 >>> import pdb
 >>> def x():
...     if 'a' in 'b':
...             pass
...
 >>> pdb.run("x()")
 > <string>(1)<module>()
(Pdb) s
--Call--
 > <stdin>(1)x()
(Pdb) s
 > <stdin>(2)x()
(Pdb) s
Segmentation fault

It usually happens within a few 's' operations in pdb.

_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to