diff --git a/python/notcurses/context.c b/python/notcurses/context.c index c58328ece..a31df8204 100644 --- a/python/notcurses/context.c +++ b/python/notcurses/context.c @@ -181,6 +181,7 @@ static void cleanup_char_buffer(char **buffer_ptr) } } +/* FIXME deprecated and changed to ncpile_render_to_file() in 2.3.5 static PyObject * Notcurses_render_to_buffer(NotcursesObject *self, PyObject *Py_UNUSED(args)) { @@ -217,6 +218,7 @@ Notcurses_render_to_file(NotcursesObject *self, PyObject *args) Py_RETURN_NONE; } +*/ static PyObject * Notcurses_top(NotcursesObject *self, PyObject *Py_UNUSED(args)) @@ -550,4 +552,4 @@ PyTypeObject Notcurses_Type = { .tp_new = Notcurses_new, .tp_dealloc = (destructor)Notcurses_dealloc, .tp_methods = Notcurses_methods, -}; \ No newline at end of file +};