projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
efcb445
)
cleanup: use new-style classes in PyrexTypes
author
Stefan Behnel
<scoder@users.berlios.de>
Thu, 12 Mar 2009 15:41:16 +0000
(16:41 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Thu, 12 Mar 2009 15:41:16 +0000
(16:41 +0100)
Cython/Compiler/PyrexTypes.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/PyrexTypes.py
b/Cython/Compiler/PyrexTypes.py
index a4b045d1cd0688c293f1b88848f2420f66f105f5..d1418bdea8181a814e00f148c829b5b1eeb2c78d 100644
(file)
--- a/
Cython/Compiler/PyrexTypes.py
+++ b/
Cython/Compiler/PyrexTypes.py
@@
-914,7
+914,7
@@
class CFuncType(CType):
return '(%s)' % s
-class CFuncTypeArg:
+class CFuncTypeArg
(object)
:
# name string
# cname string
# type PyrexType
@@
-1073,7
+1073,7
@@
class CEnumType(CType):
return self.base_declaration_code(public_decl(base, dll_linkage), entity_code)
-class CStringType:
+class CStringType
(object)
:
# Mixin class for C string types.
is_string = 1