summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2007-05-03 20:49:27 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2007-05-03 20:49:27 (GMT)
commit5d7a7001d9df605606b249b3e11707d6d1ad2e3d (patch)
tree2635720ce4d48e46482f531789ec21d2b595cde0 /Objects
parent8d30cc0144a6a94e06f3a115b07afa6314466cfd (diff)
downloadcpython-5d7a7001d9df605606b249b3e11707d6d1ad2e3d.zip
cpython-5d7a7001d9df605606b249b3e11707d6d1ad2e3d.tar.gz
cpython-5d7a7001d9df605606b249b3e11707d6d1ad2e3d.tar.bz2
Fix type name (str has been renamed to str8).
Diffstat (limited to 'Objects')
-rw-r--r--Objects/stringobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index 248070f..f74c5dc 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -3944,7 +3944,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 */