From: Stefan Behnel Date: Tue, 12 Aug 2008 20:35:09 +0000 (+0200) Subject: parsetuple format fix X-Git-Tag: 0.9.8.1~51 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2fbc1d54908604409c6e5056f05418917d21dff5;p=cython.git parsetuple format fix --- diff --git a/Cython/Compiler/PyrexTypes.py b/Cython/Compiler/PyrexTypes.py index 8417b8c1..cfdad972 100644 --- a/Cython/Compiler/PyrexTypes.py +++ b/Cython/Compiler/PyrexTypes.py @@ -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")