mirror of https://github.com/python/cpython
Remove unused variable.
This commit is contained in:
parent
60eca9331a
commit
d58f3fce3d
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue