(&self, elements: Vec<PyObjectRef>)
| 581 | |
| 582 | #[inline(always)] |
| 583 | pub fn new_list(&self, elements: Vec<PyObjectRef>) -> PyListRef { |
| 584 | PyList::from(elements).into_ref(self) |
| 585 | } |
| 586 | |
| 587 | #[inline(always)] |
| 588 | pub fn new_dict(&self) -> PyDictRef { |
no test coverage detected