[Python-checkins] r55104 - python/branches/py3k-struni/Objects/stringobject.c

walter.doerwald python-checkins at python.org
Thu May 3 22:49:31 CEST 2007


Author: walter.doerwald
Date: Thu May  3 22:49:27 2007
New Revision: 55104

Modified:
   python/branches/py3k-struni/Objects/stringobject.c
Log:
Fix type name (str has been renamed to str8).


Modified: python/branches/py3k-struni/Objects/stringobject.c
==============================================================================
--- python/branches/py3k-struni/Objects/stringobject.c	(original)
+++ python/branches/py3k-struni/Objects/stringobject.c	Thu May  3 22:49:27 2007
@@ -3944,7 +3944,7 @@
 PyTypeObject PyString_Type = {
 	PyObject_HEAD_INIT(&PyType_Type)
 	0,
-	"str",
+	"str8",
 	sizeof(PyStringObject),
 	sizeof(char),
  	string_dealloc, 			/* tp_dealloc */


More information about the Python-checkins mailing list