##// END OF EJS Templates
cleanup terminal console iopub handling...
cleanup terminal console iopub handling ensures IOPub for a given cell is handled before drawing the next prompt. Follows logic elsewhere using `status=idle` to signal end of output for a given cell. Prior to this, early execute reply could result in some output being printed after the prompt for the next input.

File last commit:

r11636:262c9947
r11670:f1c52deb
Show More
debug.py
43 lines | 1.5 KiB | text/x-python | PythonLexer
#!/usr/bin/env python
"""
Contains debug writer.
"""
#-----------------------------------------------------------------------------
#Copyright (c) 2013, the IPython Development Team.
#
#Distributed under the terms of the Modified BSD License.
#
#The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from .base import WriterBase
from pprint import pprint
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
class DebugWriter(WriterBase):
"""Consumes output from nbconvert export...() methods and writes usefull
debugging information to the stdout. The information includes a list of
resources that were extracted from the notebook(s) during export."""
def write(self, output, resources, notebook_name='notebook', **kw):
"""
Consume and write Jinja output.
See base for more...
"""
if 'outputs' in resources:
print("outputs extracted from %s" % notebook_name)
print('-' * 80)
pprint.pprint(resources['outputs'], indent=2, width=70)
else:
print("No outputs extracted from %s" % notebook_name)
print('=' * 80)