From: Christian Heimes Date: Thu, 28 Aug 2008 11:28:26 +0000 (+0000) Subject: Removed bytesmeth declaration in OyObject_Bytes. It's not used any more and causes... X-Git-Tag: v3.0rc1~160 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ff869fa0f05413bb2da2b56c4578d3fb33c832a3;p=python Removed bytesmeth declaration in OyObject_Bytes. It's not used any more and causes a compiler warning. --- diff --git a/Objects/object.c b/Objects/object.c index 206bb88d5f..cdbceaf381 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -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) {