Commit 97ed7663 authored by Stefan Behnel's avatar Stefan Behnel

cleanup: use new-style classes in PyrexTypes

parent efcb4454
...@@ -914,7 +914,7 @@ class CFuncType(CType): ...@@ -914,7 +914,7 @@ class CFuncType(CType):
return '(%s)' % s return '(%s)' % s
class CFuncTypeArg: class CFuncTypeArg(object):
# name string # name string
# cname string # cname string
# type PyrexType # type PyrexType
...@@ -1073,7 +1073,7 @@ class CEnumType(CType): ...@@ -1073,7 +1073,7 @@ class CEnumType(CType):
return self.base_declaration_code(public_decl(base, dll_linkage), entity_code) return self.base_declaration_code(public_decl(base, dll_linkage), entity_code)
class CStringType: class CStringType(object):
# Mixin class for C string types. # Mixin class for C string types.
is_string = 1 is_string = 1
......
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