(&self, value: Complex64)
| 507 | |
| 508 | #[inline] |
| 509 | pub fn new_complex(&self, value: Complex64) -> PyRef<PyComplex> { |
| 510 | PyComplex::from(value).into_ref(self) |
| 511 | } |
| 512 | |
| 513 | #[inline] |
| 514 | pub fn latin1_char(&self, ch: u8) -> PyRef<PyStr> { |
no test coverage detected