(&self, data: Vec<u8>)
| 561 | |
| 562 | #[inline] |
| 563 | pub fn new_bytearray(&self, data: Vec<u8>) -> PyRef<PyByteArray> { |
| 564 | PyByteArray::from(data).into_ref(self) |
| 565 | } |
| 566 | |
| 567 | #[inline(always)] |
| 568 | pub fn new_bool(&self, b: bool) -> PyRef<PyBool> { |
no test coverage detected