(s: PyRefExact<PyStr>, vm: &VirtualMachine)
| 1314 | |
| 1315 | #[pyfunction] |
| 1316 | fn intern(s: PyRefExact<PyStr>, vm: &VirtualMachine) -> PyRef<PyStr> { |
| 1317 | vm.ctx.intern_str(s).to_owned() |
| 1318 | } |
| 1319 | |
| 1320 | #[pyattr] |
| 1321 | fn int_info(vm: &VirtualMachine) -> PyTupleRef { |
no test coverage detected