(&mut self, item: PyObjectRef)
| 203 | } |
| 204 | |
| 205 | pub fn prepend_arg(&mut self, item: PyObjectRef) { |
| 206 | self.args.reserve_exact(1); |
| 207 | self.args.insert(0, item) |
| 208 | } |
| 209 | |
| 210 | pub fn shift(&mut self) -> PyObjectRef { |
| 211 | self.args.remove(0) |
no test coverage detected