cleanup in Shadow.py: Py_ssize_t is an int_type, nothing else
authorStefan Behnel <scoder@users.berlios.de>
Fri, 3 Jul 2009 18:57:33 +0000 (20:57 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 3 Jul 2009 18:57:33 +0000 (20:57 +0200)
Cython/Shadow.py

index 17d781e0957f096011c5c67560fc0001f01ede49..49e05f3d51df17c3ce2e02baf9bf906d8fc91897 100644 (file)
@@ -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: