[Python-3000-checkins] r59128 - python/branches/py3k/Objects/unicodeobject.c

christian.heimes python-3000-checkins at python.org
Fri Nov 23 07:52:42 CET 2007


Author: christian.heimes
Date: Fri Nov 23 07:52:42 2007
New Revision: 59128

Modified:
   python/branches/py3k/Objects/unicodeobject.c
Log:
Cleanup
Removed unreferenced variable

Modified: python/branches/py3k/Objects/unicodeobject.c
==============================================================================
--- python/branches/py3k/Objects/unicodeobject.c	(original)
+++ python/branches/py3k/Objects/unicodeobject.c	Fri Nov 23 07:52:42 2007
@@ -8654,7 +8654,6 @@
 		    Py_INCREF(temp);
 		}
 		else {
-		    PyObject *unicode;
 		    if (c == 's')
 			temp = PyObject_Str(v);
 		    else


More information about the Python-3000-checkins mailing list