From 7407286145f0697e5f5cf72ee2a533f84a21c9ac Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 3 Jul 2009 20:57:33 +0200 Subject: [PATCH] cleanup in Shadow.py: Py_ssize_t is an int_type, nothing else --- Cython/Shadow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Shadow.py b/Cython/Shadow.py index 17d781e0..49e05f3d 100644 --- a/Cython/Shadow.py +++ b/Cython/Shadow.py @@ -162,7 +162,7 @@ except NameError: # Py3 int_types = ['char', 'short', 'int', 'long', 'longlong', 'Py_ssize_t'] float_types = ['double', 'float'] -other_types = ['bint', 'Py_ssize_t', 'void'] +other_types = ['bint', 'void'] gs = globals() for name in int_types: -- 2.26.2