[Python-3000-checkins] r57424 - python/branches/py3k/Modules/xxmodule.c

neal.norwitz python-3000-checkins at python.org
Sat Aug 25 00:49:25 CEST 2007


Author: neal.norwitz
Date: Sat Aug 25 00:49:25 2007
New Revision: 57424

Modified:
   python/branches/py3k/Modules/xxmodule.c
Log:
Use unicode for reference (is there any way to build this module)

Modified: python/branches/py3k/Modules/xxmodule.c
==============================================================================
--- python/branches/py3k/Modules/xxmodule.c	(original)
+++ python/branches/py3k/Modules/xxmodule.c	Sat Aug 25 00:49:25 2007
@@ -246,7 +246,7 @@
 	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*/


More information about the Python-3000-checkins mailing list