(&mut self, name: &str)
| 258 | } |
| 259 | |
| 260 | pub fn take_keyword(&mut self, name: &str) -> Option<PyObjectRef> { |
| 261 | self.kwargs.swap_remove(name) |
| 262 | } |
| 263 | |
| 264 | pub fn remaining_keywords(&mut self) -> impl Iterator<Item = (String, PyObjectRef)> + '_ { |
| 265 | self.kwargs.drain(..) |
no test coverage detected