()
| 1116 | |
| 1117 | |
| 1118 | def main(): |
| 1119 | info = PythonInfo() |
| 1120 | error = collect_info(info) |
| 1121 | dump_info(info) |
| 1122 | |
| 1123 | if error: |
| 1124 | print() |
| 1125 | print("Collection failed: exit with error", file=sys.stderr) |
| 1126 | sys.exit(1) |
| 1127 | |
| 1128 | |
| 1129 | if __name__ == "__main__": |
no test coverage detected
searching dependent graphs…