Buffers.py: Remove dead code
authorDag Sverre Seljebotn <dagss@student.matnat.uio.no>
Mon, 27 Oct 2008 01:04:41 +0000 (02:04 +0100)
committerDag Sverre Seljebotn <dagss@student.matnat.uio.no>
Mon, 27 Oct 2008 01:04:41 +0000 (02:04 +0100)
Cython/Compiler/Buffer.py

index 8283cfe14adedbc2baf3774a3ef384ad28cacd36..c53a5ca4dec169dc49414fc04d6cfd6354ec9d1b 100644 (file)
@@ -702,17 +702,6 @@ def get_getbuffer_code(dtype, code):
         code.globalstate.use_utility_code(utilcode, name)
     return name
 
-def buffer_type_checker(dtype, code):
-    # Creates a type checker function for the given type.
-    if dtype.is_struct_or_union:
-        assert False
-    elif dtype.is_int or dtype.is_float:
-        # This includes simple typedef-ed types
-        funcname = get_getbuffer_code(dtype, code)
-    else:
-        assert False
-    return funcname
-
 def use_py2_buffer_functions(env):
     # Emulation of PyObject_GetBuffer and PyBuffer_Release for Python 2.
     # For >= 2.6 we do double mode -- use the new buffer interface on objects