[Python-3000-checkins] r59179 - python/branches/py3k/Objects/stringobject.c

georg.brandl python-3000-checkins at python.org
Sun Nov 25 01:31:12 CET 2007


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;


More information about the Python-3000-checkins mailing list