##// END OF EJS Templates
use idiomatic Python
Matthias Bussonnier -
Show More
@@ -294,7 +294,7 class InteractiveShell(SingletonConfigurable):
294 294
295 295 @observe("sphinxify_docstring")
296 296 def _sphinxify_docstring_changed(self, change):
297 if change['new'] is True:
297 if change['new']:
298 298 warn("`sphinxify_docstring` is provisional since IPython 5.0 and might change in future versions." , ProvisionalWarning)
299 299
300 300 enable_html_pager = Bool(False, help=
@@ -305,7 +305,7 class InteractiveShell(SingletonConfigurable):
305 305
306 306 @observe("enable_html_pager")
307 307 def _enable_html_pager_changed(self, change):
308 if change['new'] is True:
308 if change['new']:
309 309 warn("`enable_html_pager` is provisional since IPython 5.0 and might change in future versions.", ProvisionalWarning)
310 310
311 311 data_pub_class = None
General Comments 0
You need to be logged in to leave comments. Login now