Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fb6af9 commit cf4d8ccCopy full SHA for cf4d8cc
1 file changed
Modules/readline.c
@@ -148,7 +148,6 @@ static PyObject*
148
set_history_length(PyObject *self, PyObject *args)
149
{
150
int length = history_length;
151
- PyObject* ob;
152
if (!PyArg_ParseTuple(args, "i:set_history_length", &length))
153
return NULL;
154
history_length = length;
@@ -166,7 +165,6 @@ return the current history length value.\n\
166
165
static PyObject*
167
get_history_length(PyObject *self, PyObject *args)
168
169
170
if (!PyArg_ParseTuple(args, ":get_history_length"))
171
172
return Py_BuildValue("i", history_length);
0 commit comments