From: Stefan Behnel Date: Mon, 28 Apr 2008 09:48:34 +0000 (+0200) Subject: use str methods instead of importing string module X-Git-Tag: 0.9.6.14~12^2~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7e0c0a490dda6282bef58aa3a72335c1aed5b28b;p=cython.git use str methods instead of importing string module --- diff --git a/Cython/Compiler/PyrexTypes.py b/Cython/Compiler/PyrexTypes.py index d7427d4c..78849525 100644 --- a/Cython/Compiler/PyrexTypes.py +++ b/Cython/Compiler/PyrexTypes.py @@ -2,7 +2,6 @@ # Pyrex - Types # -import string import Naming class BaseType: @@ -102,7 +101,7 @@ class PyrexType(BaseType): return str(value) def __str__(self): - return string.strip(self.declaration_code("", for_display = 1)) + return self.declaration_code("", for_display = 1).strip() def same_as(self, other_type, **kwds): return self.same_as_resolved_type(other_type.resolve(), **kwds) @@ -609,7 +608,7 @@ class CFuncType(CType): return "" % ( repr(self.return_type), self.calling_convention_prefix(), - string.join(arg_reprs, ",")) + ",".join(arg_reprs)) def calling_convention_prefix(self): cc = self.calling_convention @@ -740,7 +739,7 @@ class CFuncType(CType): arg_decl_list.append(self.op_arg_struct.declaration_code(Naming.optional_args_cname)) if self.has_varargs: arg_decl_list.append("...") - arg_decl_code = string.join(arg_decl_list, ", ") + arg_decl_code = ", ".join(arg_decl_list) if not arg_decl_code and not pyrex: arg_decl_code = "void" exc_clause = ""