Initialize the global instance of `SecurityManager`.
(sm: SecurityManager)
| 218 | |
| 219 | |
| 220 | def set_security_manager(sm: SecurityManager): |
| 221 | """ |
| 222 | Initialize the global instance of `SecurityManager`. |
| 223 | """ |
| 224 | |
| 225 | global _sm |
| 226 | _sm = sm |
| 227 | |
| 228 | |
| 229 | def no_security_manager(): |
no outgoing calls