From fdff86bf1d0667417c9591c85ee41b06d21a2f47 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 1 Sep 2013 11:07:01 +0200 Subject: [PATCH] remove unused type variable --- Cython/Compiler/ExprNodes.py | 2 +- Cython/Compiler/PyrexTypes.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index 4488888..fb4d075 100755 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -25,7 +25,7 @@ import Nodes from Nodes import Node import PyrexTypes from PyrexTypes import py_object_type, c_long_type, typecast, error_type, \ - unspecified_type, cython_memoryview_ptr_type + unspecified_type import TypeSlots from Builtin import list_type, tuple_type, set_type, dict_type, \ unicode_type, str_type, bytes_type, type_type diff --git a/Cython/Compiler/PyrexTypes.py b/Cython/Compiler/PyrexTypes.py index 1e169ee..e8c4973 100755 --- a/Cython/Compiler/PyrexTypes.py +++ b/Cython/Compiler/PyrexTypes.py @@ -3513,8 +3513,6 @@ c_pyx_buffer_nd_type = CStructOrUnionType("__Pyx_LocalBuf_ND", "struct", cython_memoryview_type = CStructOrUnionType("__pyx_memoryview_obj", "struct", None, 0, "__pyx_memoryview_obj") -cython_memoryview_ptr_type = CPtrType(cython_memoryview_type) - memoryviewslice_type = CStructOrUnionType("memoryviewslice", "struct", None, 1, "__Pyx_memviewslice") -- 2.7.4