summaryrefslogtreecommitdiffstats
path: root/Modules/clinic/_cursesmodule.c.h
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/clinic/_cursesmodule.c.h')
-rw-r--r--Modules/clinic/_cursesmodule.c.h66
1 files changed, 33 insertions, 33 deletions
diff --git a/Modules/clinic/_cursesmodule.c.h b/Modules/clinic/_cursesmodule.c.h
index 9d99d41..8360875 100644
--- a/Modules/clinic/_cursesmodule.c.h
+++ b/Modules/clinic/_cursesmodule.c.h
@@ -708,11 +708,11 @@ _curses_window_enclose(PyCursesWindowObject *self, PyObject *const *args, Py_ssi
if (!_PyArg_CheckPositional("enclose", nargs, 2, 2)) {
goto exit;
}
- y = _PyLong_AsInt(args[0]);
+ y = PyLong_AsInt(args[0]);
if (y == -1 && PyErr_Occurred()) {
goto exit;
}
- x = _PyLong_AsInt(args[1]);
+ x = PyLong_AsInt(args[1]);
if (x == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -1264,7 +1264,7 @@ _curses_window_is_linetouched(PyCursesWindowObject *self, PyObject *arg)
PyObject *return_value = NULL;
int line;
- line = _PyLong_AsInt(arg);
+ line = PyLong_AsInt(arg);
if (line == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -1508,11 +1508,11 @@ _curses_window_redrawln(PyCursesWindowObject *self, PyObject *const *args, Py_ss
if (!_PyArg_CheckPositional("redrawln", nargs, 2, 2)) {
goto exit;
}
- beg = _PyLong_AsInt(args[0]);
+ beg = PyLong_AsInt(args[0]);
if (beg == -1 && PyErr_Occurred()) {
goto exit;
}
- num = _PyLong_AsInt(args[1]);
+ num = PyLong_AsInt(args[1]);
if (num == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -1607,11 +1607,11 @@ _curses_window_setscrreg(PyCursesWindowObject *self, PyObject *const *args, Py_s
if (!_PyArg_CheckPositional("setscrreg", nargs, 2, 2)) {
goto exit;
}
- top = _PyLong_AsInt(args[0]);
+ top = PyLong_AsInt(args[0]);
if (top == -1 && PyErr_Occurred()) {
goto exit;
}
- bottom = _PyLong_AsInt(args[1]);
+ bottom = PyLong_AsInt(args[1]);
if (bottom == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -2009,7 +2009,7 @@ _curses_color_pair(PyObject *module, PyObject *arg)
PyObject *return_value = NULL;
int pair_number;
- pair_number = _PyLong_AsInt(arg);
+ pair_number = PyLong_AsInt(arg);
if (pair_number == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -2045,7 +2045,7 @@ _curses_curs_set(PyObject *module, PyObject *arg)
PyObject *return_value = NULL;
int visibility;
- visibility = _PyLong_AsInt(arg);
+ visibility = PyLong_AsInt(arg);
if (visibility == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -2120,7 +2120,7 @@ _curses_delay_output(PyObject *module, PyObject *arg)
PyObject *return_value = NULL;
int ms;
- ms = _PyLong_AsInt(arg);
+ ms = PyLong_AsInt(arg);
if (ms == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -2363,15 +2363,15 @@ _curses_ungetmouse(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
id = (short) ival;
}
}
- x = _PyLong_AsInt(args[1]);
+ x = PyLong_AsInt(args[1]);
if (x == -1 && PyErr_Occurred()) {
goto exit;
}
- y = _PyLong_AsInt(args[2]);
+ y = PyLong_AsInt(args[2]);
if (y == -1 && PyErr_Occurred()) {
goto exit;
}
- z = _PyLong_AsInt(args[3]);
+ z = PyLong_AsInt(args[3]);
if (z == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -2525,7 +2525,7 @@ _curses_has_key(PyObject *module, PyObject *arg)
PyObject *return_value = NULL;
int key;
- key = _PyLong_AsInt(arg);
+ key = PyLong_AsInt(arg);
if (key == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -2744,7 +2744,7 @@ _curses_setupterm(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyO
goto skip_optional_pos;
}
}
- fd = _PyLong_AsInt(args[1]);
+ fd = PyLong_AsInt(args[1]);
if (fd == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -2808,7 +2808,7 @@ _curses_set_escdelay(PyObject *module, PyObject *arg)
PyObject *return_value = NULL;
int ms;
- ms = _PyLong_AsInt(arg);
+ ms = PyLong_AsInt(arg);
if (ms == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -2871,7 +2871,7 @@ _curses_set_tabsize(PyObject *module, PyObject *arg)
PyObject *return_value = NULL;
int size;
- size = _PyLong_AsInt(arg);
+ size = PyLong_AsInt(arg);
if (size == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -2957,11 +2957,11 @@ _curses_is_term_resized(PyObject *module, PyObject *const *args, Py_ssize_t narg
if (!_PyArg_CheckPositional("is_term_resized", nargs, 2, 2)) {
goto exit;
}
- nlines = _PyLong_AsInt(args[0]);
+ nlines = PyLong_AsInt(args[0]);
if (nlines == -1 && PyErr_Occurred()) {
goto exit;
}
- ncols = _PyLong_AsInt(args[1]);
+ ncols = PyLong_AsInt(args[1]);
if (ncols == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -2994,7 +2994,7 @@ _curses_keyname(PyObject *module, PyObject *arg)
PyObject *return_value = NULL;
int key;
- key = _PyLong_AsInt(arg);
+ key = PyLong_AsInt(arg);
if (key == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -3101,7 +3101,7 @@ _curses_mouseinterval(PyObject *module, PyObject *arg)
PyObject *return_value = NULL;
int interval;
- interval = _PyLong_AsInt(arg);
+ interval = PyLong_AsInt(arg);
if (interval == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -3172,7 +3172,7 @@ _curses_napms(PyObject *module, PyObject *arg)
PyObject *return_value = NULL;
int ms;
- ms = _PyLong_AsInt(arg);
+ ms = PyLong_AsInt(arg);
if (ms == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -3209,11 +3209,11 @@ _curses_newpad(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
if (!_PyArg_CheckPositional("newpad", nargs, 2, 2)) {
goto exit;
}
- nlines = _PyLong_AsInt(args[0]);
+ nlines = PyLong_AsInt(args[0]);
if (nlines == -1 && PyErr_Occurred()) {
goto exit;
}
- ncols = _PyLong_AsInt(args[1]);
+ ncols = PyLong_AsInt(args[1]);
if (ncols == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -3471,7 +3471,7 @@ _curses_pair_number(PyObject *module, PyObject *arg)
PyObject *return_value = NULL;
int attr;
- attr = _PyLong_AsInt(arg);
+ attr = PyLong_AsInt(arg);
if (attr == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -3700,11 +3700,11 @@ _curses_resizeterm(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
if (!_PyArg_CheckPositional("resizeterm", nargs, 2, 2)) {
goto exit;
}
- nlines = _PyLong_AsInt(args[0]);
+ nlines = PyLong_AsInt(args[0]);
if (nlines == -1 && PyErr_Occurred()) {
goto exit;
}
- ncols = _PyLong_AsInt(args[1]);
+ ncols = PyLong_AsInt(args[1]);
if (ncols == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -3751,11 +3751,11 @@ _curses_resize_term(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
if (!_PyArg_CheckPositional("resize_term", nargs, 2, 2)) {
goto exit;
}
- nlines = _PyLong_AsInt(args[0]);
+ nlines = PyLong_AsInt(args[0]);
if (nlines == -1 && PyErr_Occurred()) {
goto exit;
}
- ncols = _PyLong_AsInt(args[1]);
+ ncols = PyLong_AsInt(args[1]);
if (ncols == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -3816,11 +3816,11 @@ _curses_setsyx(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
if (!_PyArg_CheckPositional("setsyx", nargs, 2, 2)) {
goto exit;
}
- y = _PyLong_AsInt(args[0]);
+ y = PyLong_AsInt(args[0]);
if (y == -1 && PyErr_Occurred()) {
goto exit;
}
- x = _PyLong_AsInt(args[1]);
+ x = PyLong_AsInt(args[1]);
if (x == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -4089,7 +4089,7 @@ _curses_typeahead(PyObject *module, PyObject *arg)
PyObject *return_value = NULL;
int fd;
- fd = _PyLong_AsInt(arg);
+ fd = PyLong_AsInt(arg);
if (fd == -1 && PyErr_Occurred()) {
goto exit;
}
@@ -4313,4 +4313,4 @@ _curses_has_extended_color_support(PyObject *module, PyObject *Py_UNUSED(ignored
#ifndef _CURSES_USE_DEFAULT_COLORS_METHODDEF
#define _CURSES_USE_DEFAULT_COLORS_METHODDEF
#endif /* !defined(_CURSES_USE_DEFAULT_COLORS_METHODDEF) */
-/*[clinic end generated code: output=27a2364193b503c1 input=a9049054013a1b77]*/
+/*[clinic end generated code: output=cff0e570de65d9b8 input=a9049054013a1b77]*/