Commit 19e56261 authored by Guido van Rossum's avatar Guido van Rossum

Remove unused variable.

parent 1634a5bd
......@@ -1118,7 +1118,7 @@ PyTypeObject ifilterfalse_type;
static PyObject *
ifilterfalse_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject *func, *seq, *invert=NULL;
PyObject *func, *seq;
PyObject *it;
ifilterfalseobject *lz;
......
......@@ -772,7 +772,6 @@ build_node_tree(PyObject *tuple)
*/
int line_num = 0;
PyObject *encoding = NULL;
PyObject *tmpTuple = NULL;
if (num == encoding_decl) {
encoding = PySequence_GetItem(tuple, 2);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment