[python] spelling

This commit is contained in:
nick black 2021-11-26 03:22:54 -05:00
parent 821b2929b5
commit 80bff7a687
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ python_ncstrwidth(PyObject *Py_UNUSED(self), PyObject *args)
{
const char *s = NULL;
GNU_PY_CHECK_BOOL(PyArg_ParseTuple(args, "s", &s));
GNU_PY_CHECK_BOOL(PyArg_ParseTuple(args, "s", &s, NULL, NULL));
return Py_BuildValue("i", ncstrwidth(s));
}

View File

@ -30,7 +30,7 @@ Ncplane_create(NcPlaneObject *self, PyObject *args, PyObject *kwds)
int y = 0, x = 0;
unsigned rows = 0, cols = 0;
const char *name = NULL;
// TODO reseize callback
// TODO resize callback
unsigned long long flags = 0;
int margin_b = 0, margin_r = 0;