DO notice that call `trace` on `Py ` means apply `tracer_fn` on `Py `'s children, not like call `trace` on `PyRef ` which apply `tracer_fn` on `PyRef ` itself
(&self, tracer_fn: &mut TraverseFn<'_>)
| 423 | /// DO notice that call `trace` on `Py<T>` means apply `tracer_fn` on `Py<T>`'s children, |
| 424 | /// not like call `trace` on `PyRef<T>` which apply `tracer_fn` on `PyRef<T>` itself |
| 425 | fn traverse(&self, tracer_fn: &mut TraverseFn<'_>) { |
| 426 | self.0.traverse(tracer_fn) |
| 427 | } |
| 428 | } |
| 429 | |
| 430 | unsafe impl Traverse for PyObject { |
no outgoing calls
no test coverage detected