Fix errors found by pychecker

This commit is contained in:
Neal Norwitz 2006-06-11 08:35:14 +00:00
parent e588c2ba97
commit 6aaccc6b55
5 changed files with 11 additions and 8 deletions

View file

@ -191,7 +191,7 @@ class GenExprScope(Scope):
self.add_param('[outmost-iterable]')
def get_names(self):
keys = Scope.get_names()
keys = Scope.get_names(self)
return keys
class LambdaScope(FunctionScope):