From: Stefan Behnel Date: Tue, 20 May 2008 19:18:04 +0000 (+0200) Subject: cleanup X-Git-Tag: 0.9.8rc1~11^2~10^2~15^2~28 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=68f891c860558b95cd19c303d301801479cbb552;p=cython.git cleanup --- diff --git a/Cython/Compiler/PyrexTypes.py b/Cython/Compiler/PyrexTypes.py index 31181064..d82650e4 100644 --- a/Cython/Compiler/PyrexTypes.py +++ b/Cython/Compiler/PyrexTypes.py @@ -982,16 +982,6 @@ class CCharPtrType(CStringType, CPtrType): CPtrType.__init__(self, c_char_type) -class CUTF8CharPtrType(CUTF8StringType, CPtrType): - # C 'char *' type, encoded in UTF-8. - - parsetuple_format = "s" - pymemberdef_typecode = "T_STRING" - - def __init__(self): - CPtrType.__init__(self, c_char_type) - - class ErrorType(PyrexType): # Used to prevent propagation of error messages. @@ -1058,7 +1048,6 @@ c_null_ptr_type = CNullPtrType(c_void_type) c_char_array_type = CCharArrayType(None) c_utf8_char_array_type = CUTF8CharArrayType(None) c_char_ptr_type = CCharPtrType() -c_utf8_char_ptr_type = CUTF8CharPtrType() c_char_ptr_ptr_type = CPtrType(c_char_ptr_type) c_int_ptr_type = CPtrType(c_int_type)