[pypy-commit] pypy default: _curses: Export more A_* constants. (from linkmauve)

arigo pypy.commits at gmail.com
Mon Jun 12 01:21:51 EDT 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r91585:389ed2794e24
Date: 2017-06-12 07:21 +0200
http://bitbucket.org/pypy/pypy/changeset/389ed2794e24/

Log:	_curses: Export more A_* constants. (from linkmauve)

	These six were already checked for but never imported from C.

diff --git a/lib_pypy/_curses_build.py b/lib_pypy/_curses_build.py
--- a/lib_pypy/_curses_build.py
+++ b/lib_pypy/_curses_build.py
@@ -87,6 +87,13 @@
 static const chtype A_CHARTEXT;
 static const chtype A_COLOR;
 
+static const chtype A_HORIZONTAL;
+static const chtype A_LEFT;
+static const chtype A_LOW;
+static const chtype A_RIGHT;
+static const chtype A_TOP;
+static const chtype A_VERTICAL;
+
 static const int BUTTON1_RELEASED;
 static const int BUTTON1_PRESSED;
 static const int BUTTON1_CLICKED;


More information about the pypy-commit mailing list