Return the global instance of `SecurityManager`.
()
| 210 | |
| 211 | |
| 212 | def get_security_manager() -> Optional[SecurityManager]: |
| 213 | """ |
| 214 | Return the global instance of `SecurityManager`. |
| 215 | """ |
| 216 | global _sm |
| 217 | return _sm |
| 218 | |
| 219 | |
| 220 | def set_security_manager(sm: SecurityManager): |
no outgoing calls
no test coverage detected