From: Stefan Behnel Date: Thu, 13 May 2010 13:45:26 +0000 (+0200) Subject: cleanup X-Git-Tag: 0.13.beta0~2^2~59 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=16fb7e25ca9d9d5097d286e6695388a4a105b989;p=cython.git cleanup --- diff --git a/Cython/Compiler/TypeInference.py b/Cython/Compiler/TypeInference.py index d892731a..a110a9f6 100644 --- a/Cython/Compiler/TypeInference.py +++ b/Cython/Compiler/TypeInference.py @@ -169,7 +169,7 @@ class MarkOverflowingArithmetic(CythonTransform): visit_Node = visit_safe_node -class PyObjectTypeInferer: +class PyObjectTypeInferer(object): """ If it's not declared, it's a PyObject. """ @@ -181,7 +181,7 @@ class PyObjectTypeInferer: if entry.type is unspecified_type: entry.type = py_object_type -class SimpleAssignmentTypeInferer: +class SimpleAssignmentTypeInferer(object): """ Very basic type inference. """