Removed bytesmeth declaration in OyObject_Bytes. It's not used any more and causes a compiler warning.

This commit is contained in:
Christian Heimes 2008-08-28 11:28:26 +00:00
parent 2cabc56296
commit ff869fa0f0

View file

@ -456,7 +456,7 @@ PyObject_ASCII(PyObject *v)
PyObject *
PyObject_Bytes(PyObject *v)
{
PyObject *bytesmeth, *result, *func;
PyObject *result, *func;
static PyObject *bytesstring = NULL;
if (bytesstring == NULL) {