(&self, vm: &VirtualMachine)
| 5121 | |
| 5122 | #[pymethod] |
| 5123 | fn get_info(&self, vm: &VirtualMachine) -> PyResult { |
| 5124 | let cert = self.parse().map_err(|e| vm.new_value_error(e))?; |
| 5125 | cert::cert_to_dict(vm, &cert) |
| 5126 | } |
| 5127 | } |
| 5128 | |
| 5129 | // Implement Comparable trait for PySSLCertificate |
nothing calls this directly
no test coverage detected