Add a function definition to the context.
(fdef)
| 1868 | |
| 1869 | |
| 1870 | def add_function(fdef): |
| 1871 | """Add a function definition to the context.""" |
| 1872 | context().add_function(fdef) |
| 1873 | |
| 1874 | |
| 1875 | def remove_function(name): |
nothing calls this directly
no test coverage detected