(self, change)
| 180 | |
| 181 | @observe('profile') |
| 182 | def _profile_changed(self, change): |
| 183 | self.builtin_profile_dir = os.path.join( |
| 184 | get_ipython_package_dir(), u'config', u'profile', change['new'] |
| 185 | ) |
| 186 | |
| 187 | add_ipython_dir_to_sys_path = Bool( |
| 188 | False, |
nothing calls this directly
no test coverage detected