diff options
| author | Christian Heimes <christian@cheimes.de> | 2008-08-28 11:28:26 +0000 |
|---|---|---|
| committer | Christian Heimes <christian@cheimes.de> | 2008-08-28 11:28:26 +0000 |
| commit | ff869fa0f05413bb2da2b56c4578d3fb33c832a3 (patch) | |
| tree | 0abd2589d74193b5535f9e6e42c5882bbf06cfcf | |
| parent | 2cabc5629649b2323092d1678d2e1233d2240f00 (diff) | |
| download | cpython-git-ff869fa0f05413bb2da2b56c4578d3fb33c832a3.tar.gz | |
Removed bytesmeth declaration in OyObject_Bytes. It's not used any more and causes a compiler warning.
| -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 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) { |
