get_completer() takes no args

This commit is contained in:
Neal Norwitz 2003-03-01 15:19:41 +00:00
parent c9fbb72ba5
commit d9efdc5b5a
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ It should return the next possible completion starting with 'text'.");
static PyObject *
get_completer(PyObject *self, PyObject *args)
get_completer(PyObject *self, PyObject *noargs)
{
if (completer == NULL) {
Py_INCREF(Py_None);