From 84fc66dd020931c14be8b13fcbdb9a8f295141c9 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 3 May 2007 17:18:26 +0000 Subject: Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. Change all occurrences of unichr to chr. --- Objects/stringobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Objects/stringobject.c') diff --git a/Objects/stringobject.c b/Objects/stringobject.c index ee29c70d5a..68bf70370a 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -4009,7 +4009,7 @@ static PyObject *str_iter(PyObject *seq); PyTypeObject PyString_Type = { PyObject_HEAD_INIT(&PyType_Type) 0, - "str", + "str8", sizeof(PyStringObject), sizeof(char), string_dealloc, /* tp_dealloc */ -- cgit v1.2.1