[Python-3000-checkins] r56270 - python/branches/py3k-struni/Objects/object.c

thomas.heller python-3000-checkins at python.org
Wed Jul 11 15:57:17 CEST 2007


Author: thomas.heller
Date: Wed Jul 11 15:57:16 2007
New Revision: 56270

Modified:
   python/branches/py3k-struni/Objects/object.c
Log:
Remove unused local variable.

Modified: python/branches/py3k-struni/Objects/object.c
==============================================================================
--- python/branches/py3k-struni/Objects/object.c	(original)
+++ python/branches/py3k-struni/Objects/object.c	Wed Jul 11 15:57:16 2007
@@ -398,7 +398,6 @@
 _PyObject_Str(PyObject *v)
 {
 	PyObject *res;
-	int type_ok;
 	if (v == NULL)
 		return PyString_FromString("<NULL>");
 	if (PyString_CheckExact(v)) {


More information about the Python-3000-checkins mailing list