1 """Exmaple file to be parsed for the parsermodule example.
3 The classes and functions in this module exist only to exhibit the ability
4 of the handling information extraction from nested definitions using parse
5 trees. They shouldn't interest you otherwise!
9 "This class does very little."
12 "This method does almost nothing."
16 "This is a nested class."
18 def nested_method(self
):
19 "Method of Nested class."
20 def nested_function():
21 "Function in method of Nested class."
23 return nested_function
26 "This function lives at the module level."