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 Michael.Felt
Recipients David.Edelsohn, Michael.Felt, docs@python, ericvw, mdk
Date 2017-01-03.11:24:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1483442684.24.0.164406889944.issue28845@psf.upfronthosting.co.za>
In-reply-to
Content
FWIW: just build python-2.7.13 using xlC - and ncurses-6.0 installed.

root@x064:[/data/prj/python/python2-2.7.13]
root@x064:[/data/prj/python/python2-2.7.13]./python
Python 2.7.13 (default, Jan  3 2017, 11:16:59) [C] on aix5
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)
>>>

So, even for AIX 5.3 and Python2.7 this test seems solved. If the above is all that is needed!
History
Date User Action Args
2017-01-03 11:24:44Michael.Feltsetrecipients: + Michael.Felt, ericvw, docs@python, David.Edelsohn, mdk
2017-01-03 11:24:44Michael.Feltsetmessageid: <1483442684.24.0.164406889944.issue28845@psf.upfronthosting.co.za>
2017-01-03 11:24:44Michael.Feltlinkissue28845 messages
2017-01-03 11:24:43Michael.Feltcreate