From: Stefan Behnel Date: Sun, 6 Dec 2009 12:13:03 +0000 (+0100) Subject: make bint distinguishable from int in debug output X-Git-Tag: 0.12.1~72 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ea3d3f55ad5ef7eb797ce5863cc97a3e2193b723;p=cython.git make bint distinguishable from int in debug output --- diff --git a/Cython/Compiler/PyrexTypes.py b/Cython/Compiler/PyrexTypes.py index 264981e6..ad19dc4d 100644 --- a/Cython/Compiler/PyrexTypes.py +++ b/Cython/Compiler/PyrexTypes.py @@ -812,6 +812,9 @@ class CBIntType(CIntType): from_py_function = "__Pyx_PyObject_IsTrue" exception_check = 0 + def __repr__(self): + return "" + class CAnonEnumType(CIntType):