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.

Author mark.dickinson
Recipients akuchling, mark.dickinson, r.david.murray
Date 2010-04-15.16:51:13
SpamBayes Score 7.509358e-06
Marked as misclassified No
Message-id <1271350275.01.0.473622145203.issue7384@psf.upfronthosting.co.za>
In-reply-to
Content
I'm looking at this again, after installing FreeBSD 8.0/amd64 in a VM.

I've reduced Lib/test/test_curses.py to the following 9 lines:

import rlcompleter
import curses
f = open('mytempfile', 'w+b')
stdscr = curses.initscr()
stdscr.putwin(f)
f.seek(0)
curses.getwin(f)
f.close()
curses.endwin()

I then get:

$ ./python Lib/test/regrtest.py test_curses
test_curses
Bus error (core dumped)

From looking at the core dump, and tracing through with gdb, the core dump  occurs when delwin is called (from PyCursesWindow_Dealloc) on the result of curses.getwin(f), as a result of garbage collection.

The 'import rlcompleter' line appears to be necessary to cause this;  I've no idea why.
History
Date User Action Args
2010-04-15 16:51:15mark.dickinsonsetrecipients: + mark.dickinson, akuchling, r.david.murray
2010-04-15 16:51:15mark.dickinsonsetmessageid: <1271350275.01.0.473622145203.issue7384@psf.upfronthosting.co.za>
2010-04-15 16:51:13mark.dickinsonlinkissue7384 messages
2010-04-15 16:51:13mark.dickinsoncreate