Add __clear__ for test class

This commit is contained in:
Alexander Niederbühl 2019-07-14 20:45:05 +02:00
parent cc469afc38
commit ceefa7cc27

View file

@ -185,6 +185,7 @@ impl PyGCProtocol for GCIntegration2 {
fn __traverse__(&self, _visit: PyVisit) -> Result<(), PyTraverseError> {
Ok(())
}
fn __clear__(&mut self) {}
}
#[test]