(profile='default')
| 275 | |
| 276 | @undoc |
| 277 | def locate_profile(profile='default'): |
| 278 | warn("locate_profile has moved to the IPython.paths module since IPython 4.0.", DeprecationWarning, stacklevel=2) |
| 279 | from IPython.paths import locate_profile |
| 280 | return locate_profile(profile=profile) |
| 281 | |
| 282 | def expand_path(s): |
| 283 | """Expand $VARS and ~names in a string, like a shell |
nothing calls this directly
no test coverage detected