From: Stefan Behnel Date: Wed, 26 Nov 2008 20:00:35 +0000 (+0100) Subject: let types inherit from object to work around hashing problems X-Git-Tag: 0.11-beta~210 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9fecd15afe9bf8a8ae44a6b4e26adb0accbbeadf;p=cython.git let types inherit from object to work around hashing problems --- diff --git a/Cython/Compiler/PyrexTypes.py b/Cython/Compiler/PyrexTypes.py index 70330959..ae3ae01f 100644 --- a/Cython/Compiler/PyrexTypes.py +++ b/Cython/Compiler/PyrexTypes.py @@ -7,7 +7,7 @@ import StringEncoding import Naming import copy -class BaseType: +class BaseType(object): # # Base class for all Pyrex types including pseudo-types.