projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d51e99
)
removed unused code
author
Stefan Behnel
<scoder@users.berlios.de>
Mon, 15 Nov 2010 22:12:31 +0000
(23:12 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Mon, 15 Nov 2010 22:12:31 +0000
(23:12 +0100)
Cython/Compiler/Symtab.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/Symtab.py
b/Cython/Compiler/Symtab.py
index fa20a39cd81b569239b5aba38d62c9ca7577a7d9..772f2a6ac8e27dfc27efb8cb13e594a4da9c36b5 100644
(file)
--- a/
Cython/Compiler/Symtab.py
+++ b/
Cython/Compiler/Symtab.py
@@
-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: