]> granicus.if.org Git - python/commitdiff
get_completer() takes no args
authorNeal Norwitz <nnorwitz@gmail.com>
Sat, 1 Mar 2003 15:19:41 +0000 (15:19 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Sat, 1 Mar 2003 15:19:41 +0000 (15:19 +0000)
Modules/readline.c

index b364b726628e354ed1dc46b863df1578313c290a..bc8562ea651d2843b00d9fd6d44fa3161f69d2cf 100644 (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);