removed unused code
authorStefan Behnel <scoder@users.berlios.de>
Mon, 15 Nov 2010 22:12:31 +0000 (23:12 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Mon, 15 Nov 2010 22:12:31 +0000 (23:12 +0100)
Cython/Compiler/Symtab.py

index fa20a39cd81b569239b5aba38d62c9ca7577a7d9..772f2a6ac8e27dfc27efb8cb13e594a4da9c36b5 100644 (file)
@@ -1381,9 +1381,6 @@ class ClassScope(Scope):
         self.class_name = name
         self.doc = None
 
-    def add_string_const(self, value, identifier = False):
-        return self.outer_scope.add_string_const(value, identifier)
-
     def lookup(self, name):
         entry = Scope.lookup(self, name)
         if entry: