Run 2to3 over the Demo/ directory to shut up parse errors from 2to3 about lingering print statements.

This commit is contained in:
Collin Winter 2007-07-17 20:59:35 +00:00
parent a8c360ee76
commit 6f2df4d5e1
132 changed files with 1070 additions and 1080 deletions

View file

@ -63,7 +63,7 @@ class SuiteInfoBase:
return self._name
def get_class_names(self):
return self._class_info.keys()
return list(self._class_info.keys())
def get_class_info(self, name):
return self._class_info[name]
@ -79,7 +79,7 @@ class SuiteFuncInfo:
# Mixin class providing access to function names and info.
def get_function_names(self):
return self._function_info.keys()
return list(self._function_info.keys())
def get_function_info(self, name):
return self._function_info[name]
@ -97,7 +97,7 @@ class ClassInfo(SuiteInfoBase):
SuiteInfoBase.__init__(self, tree and tree[-1] or None)
def get_method_names(self):
return self._function_info.keys()
return list(self._function_info.keys())
def get_method_info(self, name):
return self._function_info[name]