This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: weird seg fault
Type: crash Stage:
Components: Extension Modules Versions: Python 2.5
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: amaury.forgeotdarc, utilitarian
Priority: normal Keywords:

Created on 2009-04-14 06:43 by utilitarian, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
python_crash.tar.gz utilitarian, 2009-04-14 06:43 archive with the two files needed to create the segfault.
Messages (3)
msg85960 - (view) Author: Peter Lonjers (utilitarian) Date: 2009-04-14 06:43
In python 2.5.2 on ubuntu Ibex. If your run the command python
round_robin_seg.py  smallest_tomog. Using the files provided.
There is a segfault. It happens in the core interpreter. It happened
when I added line 35 to the python code. Sorry I do not have time at the
moment to pin it down better.
msg85961 - (view) Author: Peter Lonjers (utilitarian) Date: 2009-04-14 07:00
Hmm I just remembered I was using psyco with this code. With out it.
There is a recursion depth exception not a segfault. Changing the bug to
be in Extension modules. If that is the right place.
msg85963 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2009-04-14 10:22
Closing as invalid, for two reasons:
- Psyco is not a supported extension module.
- This problem is already listed in Psyco's Known Bugs:
http://psyco.sourceforge.net/psycoguide/bugs.html
History
Date User Action Args
2022-04-11 14:56:47adminsetgithub: 50000
2009-04-14 10:22:36amaury.forgeotdarcsetstatus: open -> closed

nosy: + amaury.forgeotdarc
messages: + msg85963

resolution: not a bug
2009-04-14 07:00:26utilitariansetmessages: + msg85961
components: + Extension Modules, - Interpreter Core
2009-04-14 06:44:48utilitariansettype: crash
2009-04-14 06:43:41utilitariancreate