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 ericvw
Recipients David.Edelsohn, Michael.Felt, docs@python, ericvw, mdk
Date 2016-12-05.14:03:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1480946628.56.0.587780857837.issue28845@psf.upfronthosting.co.za>
In-reply-to
Content
I have been able to test the example without a segmentation fault.

$ python3.5
Python 3.5.2 (default, Nov 17 2016, 10:45:58) [C] on aix7
Type "help", "copyright", "credits" or "license" for more information.
>>> import curses
>>> from curses import panel
>>> def mkpanel(scr):
...         win = curses.newwin(8,8,1,1)
...         pan = panel.new_panel(win)
...
>>> curses.wrapper(mkpanel)
>>>
History
Date User Action Args
2016-12-05 14:03:48ericvwsetrecipients: + ericvw, docs@python, David.Edelsohn, Michael.Felt, mdk
2016-12-05 14:03:48ericvwsetmessageid: <1480946628.56.0.587780857837.issue28845@psf.upfronthosting.co.za>
2016-12-05 14:03:48ericvwlinkissue28845 messages
2016-12-05 14:03:48ericvwcreate