This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TERM Eterm | |
| TERM ansi | |
| TERM color-xterm | |
| TERM con[0-9]*x[0-9]* | |
| TERM cons25 | |
| TERM console | |
| TERM cygwin | |
| TERM dtterm | |
| TERM eterm-color | |
| TERM gnome |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import inspect | |
| def class_name(cls): | |
| """Return a string representing the class""" | |
| # NOTE: can be changed to str(class) for more complete class info | |
| return cls.__name__ | |
| def classes_tree(module, base_module=None): | |
| if base_module is None: | |
| base_module == module.__name__ |