Author: georg.brandl
Date: Sun Nov 25 01:31:12 2007
New Revision: 59179

Modified:
   python/branches/py3k/Objects/stringobject.c
Log:
Remove unused variable.


Modified: python/branches/py3k/Objects/stringobject.c
==============================================================================
--- python/branches/py3k/Objects/stringobject.c (original)
+++ python/branches/py3k/Objects/stringobject.c Sun Nov 25 01:31:12 2007
@@ -2847,7 +2847,6 @@
 string_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
 {
        PyObject *x = NULL, *it;
-       PyObject *(*iternext)(PyObject *);
        const char *encoding = NULL;
        const char *errors = NULL;
        PyObject *new = NULL;
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to