(&mut self, out: &mut Vec<PyObjectRef>)
| 49 | } |
| 50 | |
| 51 | fn clear(&mut self, out: &mut Vec<PyObjectRef>) { |
| 52 | // Pop all entries and collect both keys and values |
| 53 | for (key, value) in self.entries.drain_entries() { |
| 54 | out.push(key); |
| 55 | out.push(value); |
| 56 | } |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | impl fmt::Debug for PyDict { |
nothing calls this directly
no test coverage detected