(self)
| 171 | ).tag(config=True) |
| 172 | @default('ipython_dir') |
| 173 | def _ipython_dir_default(self): |
| 174 | d = get_ipython_dir() |
| 175 | self._ipython_dir_changed({ |
| 176 | 'name': 'ipython_dir', |
| 177 | 'old': d, |
| 178 | 'new': d, |
| 179 | }) |
| 180 | return d |
| 181 | |
| 182 | _in_init_profile_dir = False |
| 183 | profile_dir = Instance(ProfileDir, allow_none=True) |
nothing calls this directly
no test coverage detected