]> granicus.if.org Git - python/commitdiff
Removed bytesmeth declaration in OyObject_Bytes. It's not used any more and causes...
authorChristian Heimes <christian@cheimes.de>
Thu, 28 Aug 2008 11:28:26 +0000 (11:28 +0000)
committerChristian Heimes <christian@cheimes.de>
Thu, 28 Aug 2008 11:28:26 +0000 (11:28 +0000)
Objects/object.c

index 206bb88d5f8230a94b8ad6f0430f97ae53793996..cdbceaf381e242dc2028999e3553c054c7395d26 100644 (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) {