diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-02-03 09:35:08 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-02-03 09:35:08 -0500 |
commit | f045de4fc221ebf376ac976a0e35d6a9a1ff06b5 (patch) | |
tree | 0279d245219fd99c108079d95dbf7f37e7555fe7 /Modules/_opcode.c | |
parent | ae376e5ddc037825cf70adfbefeb2ac05123da52 (diff) | |
download | cpython-git-f045de4fc221ebf376ac976a0e35d6a9a1ff06b5.tar.gz |
remove code which does nothing but cause refleaks
Diffstat (limited to 'Modules/_opcode.c')
-rw-r--r-- | Modules/_opcode.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Modules/_opcode.c b/Modules/_opcode.c index 30eeeef744..712e6eb54b 100644 --- a/Modules/_opcode.c +++ b/Modules/_opcode.c @@ -55,15 +55,11 @@ _opcode_stack_effect_impl(PyModuleDef *module, int opcode, PyObject *oparg) int effect; int oparg_int = 0; if (HAS_ARG(opcode)) { - PyObject *i_object; if (oparg == Py_None) { PyErr_SetString(PyExc_ValueError, "stack_effect: opcode requires oparg but oparg was not specified"); return -1; } - i_object = PyNumber_Index(oparg); - if (!i_object) - return -1; oparg_int = (int)PyLong_AsLong(oparg); if ((oparg_int == -1) && PyErr_Occurred()) return -1; |