Original text: --------------- class Clazz: # this function does nothing def foo(): ... --------------- Subtree: Language: Python --------------- class Clazz: """ This function does nothing Accepts nothing Returns nothing """ def foo(): ... ---------------