[pypy-commit] pypy curses_cffi: Turns out we need to be able to resize windows.

jerith noreply at buildbot.pypy.org
Thu Feb 7 16:29:39 CET 2013


Author: Jeremy Thurgood <firxen at gmail.com>
Branch: curses_cffi
Changeset: r60937:dff6aa17b730
Date: 2013-02-07 17:10 +0200
http://bitbucket.org/pypy/pypy/changeset/dff6aa17b730/

Log:	Turns out we need to be able to resize windows.

diff --git a/lib_pypy/_curses.py b/lib_pypy/_curses.py
--- a/lib_pypy/_curses.py
+++ b/lib_pypy/_curses.py
@@ -210,6 +210,7 @@
 int winsnstr(WINDOW *, const char *, int);
 int winsstr(WINDOW *, const char *);
 int wmove(WINDOW *, int, int);
+int wresize(WINDOW *, int, int);
 int wnoutrefresh(WINDOW *);
 int wredrawln(WINDOW *, int, int);
 int wrefresh(WINDOW *);


More information about the pypy-commit mailing list