(self)
| 205 | ).tag(config=True) |
| 206 | @default('ipython_dir') |
| 207 | def _ipython_dir_default(self): |
| 208 | d = get_ipython_dir() |
| 209 | self._ipython_dir_changed({ |
| 210 | 'name': 'ipython_dir', |
| 211 | 'old': d, |
| 212 | 'new': d, |
| 213 | }) |
| 214 | return d |
| 215 | |
| 216 | _in_init_profile_dir = False |
| 217 |
nothing calls this directly
no test coverage detected