(name: &str)
| 1249 | /// Returns ``True`` if a subscriber with that name was found and removed. |
| 1250 | #[pyfunction] |
| 1251 | fn deregister_subscriber(name: &str) -> PyResult<bool> { |
| 1252 | core_subscriber_api::deregister_subscriber(name).map_err(to_py_err) |
| 1253 | } |
| 1254 | |
| 1255 | /// Wait for subscriber callbacks queued before this call to finish. |
| 1256 | #[pyfunction] |
no outgoing calls