[issue9667] NetBSD curses KEY_* constants

2017-11-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Currently the default curses library on NetBSD provides all guarded functions. All these guards no longer needed. And they were removed in issue31891. -- nosy: +serhiy.storchaka resolution: -> out of date stage: -> resolved status: open -> closed s

[issue9667] NetBSD curses KEY_* constants

2011-05-31 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.5, Python 2.6, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue9667] NetBSD curses KEY_* constants

2011-05-15 Thread Gregory P. Smith
Gregory P. Smith added the comment: unassigning, i don't have time to tackle netbsd issues right now. -- assignee: gregory.p.smith -> ___ Python tracker ___

[issue9667] NetBSD curses KEY_* constants

2011-03-15 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- assignee: -> gregory.p.smith keywords: +patch nosy: +gregory.p.smith Added file: http://bugs.python.org/file21215/_cursesmodule.c.diff ___ Python tracker ___

[issue9667] NetBSD curses KEY_* constants

2011-03-14 Thread R. David Murray
R. David Murray added the comment: I don't think we have any committers who run NetBDS. Can you attach your patch here? I take it the other NetBSD checks are still required? -- nosy: +r.david.murray ___ Python tracker

[issue9667] NetBSD curses KEY_* constants

2010-08-24 Thread Bill Green
New submission from Bill Green : _cursesmodule.c provides a list of constants, prefixed with KEY_, corresponding to special keys (KEY_DOWN, KEY_LEFT, KEY_BACKSPACE, etc.). A portion of the function init_curses, which implements these, is #defined out on NetBSD (at line 2860 in Python 2.7). Py