From 2fbc1d54908604409c6e5056f05418917d21dff5 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Tue, 12 Aug 2008 22:35:09 +0200 Subject: [PATCH] parsetuple format fix --- Cython/Compiler/PyrexTypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- 2.26.2