From: Neal Norwitz <nnorwitz@gmail.com>
Date: Fri, 24 Aug 2007 22:49:25 +0000 (+0000)
Subject: Use unicode for reference (is there any way to build this module)
X-Git-Tag: v3.0a1~286
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=808c7d86ea07a91c416f0844f4fc95a0c996001c;p=python

Use unicode for reference (is there any way to build this module)
---

diff --git a/Modules/xxmodule.c b/Modules/xxmodule.c
index 0923f81bcb..7509e2062c 100644
--- a/Modules/xxmodule.c
+++ b/Modules/xxmodule.c
@@ -246,7 +246,7 @@ static PyTypeObject Str_Type = {
 	0,			/*tp_methods*/
 	0,			/*tp_members*/
 	0,			/*tp_getset*/
-	&PyString_Type,		/*tp_base*/
+	&PyUnicode_Type,	/*tp_base*/
 	0,			/*tp_dict*/
 	0,			/*tp_descr_get*/
 	0,			/*tp_descr_set*/