(path)
| 223 | |
| 224 | |
| 225 | def write_cert_reference(path): |
| 226 | import _ssl |
| 227 | refdata = pprint.pformat(_ssl._test_decode_cert(path)) |
| 228 | print(refdata) |
| 229 | with open(path + '.reference', 'w') as f: |
| 230 | print(refdata, file=f) |
| 231 | |
| 232 | |
| 233 | if __name__ == '__main__': |
no test coverage detected
searching dependent graphs…