From 16fb7e25ca9d9d5097d286e6695388a4a105b989 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 13 May 2010 15:45:26 +0200 Subject: [PATCH] cleanup --- Cython/Compiler/TypeInference.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. """ -- 2.26.2