diff options
author | Collin Winter <collinw@gmail.com> | 2007-07-17 20:59:35 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-07-17 20:59:35 (GMT) |
commit | 6f2df4d5e193d54244b0c2de91ef0ab1604b9243 (patch) | |
tree | 5e172400da7561eb4bb8fafc62c8cab511d74dad /Demo/parser/example.py | |
parent | a8c360ee76fb76902a2e2140fbb38d4b06b2d9fb (diff) | |
download | cpython-6f2df4d5e193d54244b0c2de91ef0ab1604b9243.zip cpython-6f2df4d5e193d54244b0c2de91ef0ab1604b9243.tar.gz cpython-6f2df4d5e193d54244b0c2de91ef0ab1604b9243.tar.bz2 |
Run 2to3 over the Demo/ directory to shut up parse errors from 2to3 about lingering print statements.
Diffstat (limited to 'Demo/parser/example.py')
-rw-r--r-- | Demo/parser/example.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Demo/parser/example.py b/Demo/parser/example.py index 2aa9ec2..c2f0883 100644 --- a/Demo/parser/example.py +++ b/Demo/parser/example.py @@ -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] |