(binary)
| 89 | |
| 90 | @exceptions_handler(Exception) |
| 91 | def print_classes(binary): |
| 92 | format_str = "{:<33} {:<30}" |
| 93 | format_hex = "{:<33} 0x{:<28x}" |
| 94 | format_dec = "{:<33} {:<30d}" |
| 95 | |
| 96 | classes = binary.classes |
| 97 | |
| 98 | print("== Classes ==") |
| 99 | for cls in classes: |
| 100 | print(cls) |
| 101 | |
| 102 | @exceptions_handler(Exception) |
| 103 | def print_methods(binary): |