[Python-3000-checkins] r66054 - python/branches/py3k/Objects/object.c
christian.heimes
python-3000-checkins at python.org
Thu Aug 28 13:28:26 CEST 2008
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) {
More information about the Python-3000-checkins
mailing list