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)) {
_______________________________________________
Python-3000-checkins mailing list
Python-3000-checkins@python.org
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to