commit | ff869fa0f05413bb2da2b56c4578d3fb33c832a3 | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Thu Aug 28 11:28:26 2008 +0000 |
committer | Christian Heimes <christian@cheimes.de> | Thu Aug 28 11:28:26 2008 +0000 |
tree | 0abd2589d74193b5535f9e6e42c5882bbf06cfcf | |
parent | 2cabc5629649b2323092d1678d2e1233d2240f00 [diff] |
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 206bb88..cdbceaf 100644 --- a/Objects/object.c +++ b/Objects/object.c
@@ -456,7 +456,7 @@ PyObject * PyObject_Bytes(PyObject *v) { - PyObject *bytesmeth, *result, *func; + PyObject *result, *func; static PyObject *bytesstring = NULL; if (bytesstring == NULL) {