Remove a function from the context.
(name)
| 1873 | |
| 1874 | |
| 1875 | def remove_function(name): |
| 1876 | """Remove a function from the context.""" |
| 1877 | context().remove_function(name) |
| 1878 | |
| 1879 | |
| 1880 | # Not every user creates a Context via context.context() |
nothing calls this directly
no test coverage detected