Issue #10833: Remove the buffer allocated on the stack, it isn't used anymore

This commit is contained in:
Victor Stinner 2011-03-21 18:10:02 +01:00
parent 91156ff3f1
commit 44afe2b35a
1 changed files with 0 additions and 1 deletions

View File

@ -156,7 +156,6 @@ weakref_hash(PyWeakReference *self)
static PyObject *
weakref_repr(PyWeakReference *self)
{
char buffer[256];
PyObject *name, *repr;
if (PyWeakref_GET_OBJECT(self) == Py_None)