(zelf: &Py<Self>, _vm: &VirtualMachine)
| 2189 | impl Representable for PySSLContext { |
| 2190 | #[inline] |
| 2191 | fn repr_str(zelf: &Py<Self>, _vm: &VirtualMachine) -> PyResult<String> { |
| 2192 | Ok(format!("<SSLContext(protocol={})>", zelf.protocol)) |
| 2193 | } |
| 2194 | } |
| 2195 | |
| 2196 | impl Constructor for PySSLContext { |