Show More
@@ -566,5 +566,5 b" default_gui_banner = ''.join(default_gui_banner_parts)" | |||||
566 | def page_guiref(arg_s=None): |
|
566 | def page_guiref(arg_s=None): | |
567 | """Show a basic reference about the GUI Console.""" |
|
567 | """Show a basic reference about the GUI Console.""" | |
568 | from IPython.core import page |
|
568 | from IPython.core import page | |
569 |
page.page(gui_reference |
|
569 | page.page(gui_reference) | |
570 |
|
570 |
@@ -233,7 +233,6 b' class IPythonWidget(FrontendWidget):' | |||||
233 | # data. But we need to figure out how to handle this in the GUI. |
|
233 | # data. But we need to figure out how to handle this in the GUI. | |
234 | if not self._hidden and self._is_from_this_session(msg): |
|
234 | if not self._hidden and self._is_from_this_session(msg): | |
235 | self.flush_clearoutput() |
|
235 | self.flush_clearoutput() | |
236 | source = msg['content']['source'] |
|
|||
237 | data = msg['content']['data'] |
|
236 | data = msg['content']['data'] | |
238 | metadata = msg['content']['metadata'] |
|
237 | metadata = msg['content']['metadata'] | |
239 | # In the regular IPythonWidget, we simply print the plain text |
|
238 | # In the regular IPythonWidget, we simply print the plain text |
@@ -135,7 +135,6 b' class RichIPythonWidget(IPythonWidget):' | |||||
135 | """ |
|
135 | """ | |
136 | if not self._hidden and self._is_from_this_session(msg): |
|
136 | if not self._hidden and self._is_from_this_session(msg): | |
137 | self.flush_clearoutput() |
|
137 | self.flush_clearoutput() | |
138 | source = msg['content']['source'] |
|
|||
139 | data = msg['content']['data'] |
|
138 | data = msg['content']['data'] | |
140 | metadata = msg['content']['metadata'] |
|
139 | metadata = msg['content']['metadata'] | |
141 | # Try to use the svg or html representations. |
|
140 | # Try to use the svg or html representations. |
General Comments 0
You need to be logged in to leave comments.
Login now