(module, item)
| 260 | |
| 261 | |
| 262 | def is_child(module, item): |
| 263 | import inspect |
| 264 | |
| 265 | item_mod = inspect.getmodule(item) |
| 266 | return item_mod is module |
| 267 | |
| 268 | |
| 269 | def dir_of_mod_or_error(module_name, keep_other=True): |
no outgoing calls
no test coverage detected