summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-08-28 11:28:26 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-08-28 11:28:26 (GMT)
commitff869fa0f05413bb2da2b56c4578d3fb33c832a3 (patch)
tree0abd2589d74193b5535f9e6e42c5882bbf06cfcf /Objects/object.c
parent2cabc5629649b2323092d1678d2e1233d2240f00 (diff)
downloadcpython-ff869fa0f05413bb2da2b56c4578d3fb33c832a3.zip
cpython-ff869fa0f05413bb2da2b56c4578d3fb33c832a3.tar.gz
cpython-ff869fa0f05413bb2da2b56c4578d3fb33c832a3.tar.bz2
Removed bytesmeth declaration in OyObject_Bytes. It's not used any more and causes a compiler warning.
Diffstat (limited to 'Objects/object.c')
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
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_ASCII(PyObject *v)
PyObject *
PyObject_Bytes(PyObject *v)
{
- PyObject *bytesmeth, *result, *func;
+ PyObject *result, *func;
static PyObject *bytesstring = NULL;
if (bytesstring == NULL) {