From ea3d3f55ad5ef7eb797ce5863cc97a3e2193b723 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 6 Dec 2009 13:13:03 +0100 Subject: [PATCH] make bint distinguishable from int in debug output --- Cython/Compiler/PyrexTypes.py | 3 +++ 1 file changed, 3 insertions(+) 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): -- 2.26.2