summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-03-01 15:19:41 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-03-01 15:19:41 (GMT)
commitd9efdc5b5a532210b36d9ad410f201e64aebac36 (patch)
treea6e0a4d0ed19e4053ca28c8c0475bda1401b3be7
parentc9fbb72ba56dfbc78219971cd25aaf2d849d42ac (diff)
downloadcpython-d9efdc5b5a532210b36d9ad410f201e64aebac36.zip
cpython-d9efdc5b5a532210b36d9ad410f201e64aebac36.tar.gz
cpython-d9efdc5b5a532210b36d9ad410f201e64aebac36.tar.bz2
get_completer() takes no args
-rw-r--r--Modules/readline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/readline.c b/Modules/readline.c
index b364b72..bc8562e 100644
--- a/Modules/readline.c
+++ b/Modules/readline.c
@@ -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);