Discussion:
[Python-3000-checkins] r66054 - python/branches/py3k/Objects/object.c
christian.heimes
2008-08-28 11:28:26 UTC
Permalink
Author: christian.heimes
Date: Thu Aug 28 13:28:26 2008
New Revision: 66054

Log:
Removed bytesmeth declaration in OyObject_Bytes. It's not used any more and causes a compiler warning.

Modified:
python/branches/py3k/Objects/object.c

Modified: python/branches/py3k/Objects/object.c
==============================================================================
--- python/branches/py3k/Objects/object.c (original)
+++ python/branches/py3k/Objects/object.c Thu Aug 28 13:28:26 2008
@@ -456,7 +456,7 @@
PyObject *
PyObject_Bytes(PyObject *v)
{
- PyObject *bytesmeth, *result, *func;
+ PyObject *result, *func;
static PyObject *bytesstring = NULL;

if (bytesstring == NULL) {

Loading...