diff options
author | Christian Heimes <christian@cheimes.de> | 2008-08-28 11:28:26 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-08-28 11:28:26 (GMT) |
commit | ff869fa0f05413bb2da2b56c4578d3fb33c832a3 (patch) | |
tree | 0abd2589d74193b5535f9e6e42c5882bbf06cfcf /Objects | |
parent | 2cabc5629649b2323092d1678d2e1233d2240f00 (diff) | |
download | cpython-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')
-rw-r--r-- | Objects/object.c | 2 |
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) { |