[Python-3000-checkins] r55960 - python/branches/py3k-struni/Objects/typeobject.c

guido.van.rossum python-3000-checkins at python.org
Wed Jun 13 18:27:51 CEST 2007


Author: guido.van.rossum
Date: Wed Jun 13 18:27:47 2007
New Revision: 55960

Modified:
   python/branches/py3k-struni/Objects/typeobject.c
Log:
Discard unused function.


Modified: python/branches/py3k-struni/Objects/typeobject.c
==============================================================================
--- python/branches/py3k-struni/Objects/typeobject.c	(original)
+++ python/branches/py3k-struni/Objects/typeobject.c	Wed Jun 13 18:27:47 2007
@@ -1582,40 +1582,6 @@
 	return 1;
 }
 
-/* Replace Unicode objects in slots.  */
-
-static PyObject *
-_unicode_to_string(PyObject *slots, Py_ssize_t nslots)
-{
-	PyObject *tmp = NULL;
-	PyObject *slot_name, *new_name;
-	Py_ssize_t i;
-
-	for (i = 0; i < nslots; i++) {
-		if (PyUnicode_Check(slot_name = PyTuple_GET_ITEM(slots, i))) {
-			if (tmp == NULL) {
-				tmp = PySequence_List(slots);
-				if (tmp == NULL)
-					return NULL;
-			}
-			new_name = _PyUnicode_AsDefaultEncodedString(slot_name,
-								     NULL);
-			if (new_name == NULL) {
-				Py_DECREF(tmp);
-				return NULL;
-			}
-			Py_INCREF(new_name);
-			PyList_SET_ITEM(tmp, i, new_name);
-			Py_DECREF(slot_name);
-		}
-	}
-	if (tmp != NULL) {
-		slots = PyList_AsTuple(tmp);
-		Py_DECREF(tmp);
-	}
-	return slots;
-}
-
 /* Forward */
 static int
 object_init(PyObject *self, PyObject *args, PyObject *kwds);


More information about the Python-3000-checkins mailing list