Commit 7e0c0a49 authored by Stefan Behnel's avatar Stefan Behnel

use str methods instead of importing string module

parent 252ec91d
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
# Pyrex - Types # Pyrex - Types
# #
import string
import Naming import Naming
class BaseType: class BaseType:
...@@ -102,7 +101,7 @@ class PyrexType(BaseType): ...@@ -102,7 +101,7 @@ class PyrexType(BaseType):
return str(value) return str(value)
def __str__(self): 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): def same_as(self, other_type, **kwds):
return self.same_as_resolved_type(other_type.resolve(), **kwds) return self.same_as_resolved_type(other_type.resolve(), **kwds)
...@@ -609,7 +608,7 @@ class CFuncType(CType): ...@@ -609,7 +608,7 @@ class CFuncType(CType):
return "<CFuncType %s %s[%s]>" % ( return "<CFuncType %s %s[%s]>" % (
repr(self.return_type), repr(self.return_type),
self.calling_convention_prefix(), self.calling_convention_prefix(),
string.join(arg_reprs, ",")) ",".join(arg_reprs))
def calling_convention_prefix(self): def calling_convention_prefix(self):
cc = self.calling_convention cc = self.calling_convention
...@@ -740,7 +739,7 @@ class CFuncType(CType): ...@@ -740,7 +739,7 @@ class CFuncType(CType):
arg_decl_list.append(self.op_arg_struct.declaration_code(Naming.optional_args_cname)) arg_decl_list.append(self.op_arg_struct.declaration_code(Naming.optional_args_cname))
if self.has_varargs: if self.has_varargs:
arg_decl_list.append("...") 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: if not arg_decl_code and not pyrex:
arg_decl_code = "void" arg_decl_code = "void"
exc_clause = "" exc_clause = ""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment