parsetuple format fix
authorStefan Behnel <scoder@users.berlios.de>
Tue, 12 Aug 2008 20:35:09 +0000 (22:35 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Tue, 12 Aug 2008 20:35:09 +0000 (22:35 +0200)
Cython/Compiler/PyrexTypes.py

index 8417b8c1cbe5eff306e680fbc34a9b7efd205141..cfdad97215727091fcde04fc0ff65868afa648f0 100644 (file)
@@ -1024,7 +1024,7 @@ class UnicodeType(BuiltinObjectType):
     is_string = 1
     is_unicode = 1
     
-    parsetuple_format = "O"
+    parsetuple_format = "U"
 
     def __init__(self):
         BuiltinObjectType.__init__(self, "unicode", "PyUnicodeObject")