(module_str)
| 269 | |
| 270 | @undoc |
| 271 | def get_ipython_module_path(module_str): |
| 272 | warn("get_ipython_module_path has moved to the IPython.paths module since IPython 4.0.", DeprecationWarning, stacklevel=2) |
| 273 | from IPython.paths import get_ipython_module_path |
| 274 | return get_ipython_module_path(module_str) |
| 275 | |
| 276 | @undoc |
| 277 | def locate_profile(profile='default'): |
nothing calls this directly
no test coverage detected